#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() {}