#ifndef _PRODUCTTYPE_H #define _PRODUCTTYPE_H #include "DBEntity.h" class ProductType: public DBEntity { public: ProductType(TIPsDatabase *_db, const char *_name, const bool _commonword, const unsigned int _id): DBEntity(_db, _name, _commonword, _id) {} void addToDB(); }; #endif