Files
MuditaOS/module-db/Databases/CountryCodesDB.cpp

13 lines
285 B
C++

#include "CountryCodesDB.hpp"
const char *CountryCodesDB::dbName = "country-codes.db";
CountryCodesDB::CountryCodesDB() : Database(dbName), countryCodes(this)
{
if (countryCodes.create() == false)
return;
isInitialized_ = true;
}
CountryCodesDB::~CountryCodesDB()
{}