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