mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-25 22:40:26 -05:00
13 lines
288 B
C++
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()
|
|
{} |