mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-06 12:22:00 -05:00
13 lines
285 B
C++
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()
|
|
{} |