~aleteoryx/muditaos

ref: 91e29f1cacf03a1448efbc72145a396c16df873d muditaos/module-db/Databases/CountryCodesDB.hpp -rw-r--r-- 337 bytes
91e29f1c — Bartek Cichocki [EGD-3486] Implementation of SMS handling in service-desktop 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include "Database/Database.hpp"
#include "Tables/CountryCodesTable.hpp"

class CountryCodesDB : public Database
{
  public:
    CountryCodesDB();
    ~CountryCodesDB();

    static const char *GetDBName()
    {
        return dbName;
    }

    CountryCodesTable countryCodes;

  private:
    static const char *dbName;
};