Initial commit

This commit is contained in:
2020-05-01 11:03:00 +02:00
commit 3a12256d49
16 changed files with 278 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef DATAID_H
#define DATAID_H
#include <string>
namespace DataStorage {
class DataId
{
public:
DataId(const std::string& dataName);
int Id() const;
std::string Table() const;
private:
int GetId(const std::string& dataName) const;
private:
std::string m_table;
};
} // namespace DataStorage
#endif // DATAID_H