Files
MuditaOS/module-db/Databases/CountryCodesDB.cpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

13 lines
288 B
C++

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