Files
MuditaOS/module-db/Databases/CountryCodesDB.cpp
rkubiak01 bc45d728fc [EGD-2535] static country code data
initial commit for database structure in code
2020-02-03 07:59:33 -05:00

14 lines
289 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()
{
}