Initial commit

This commit is contained in:
2020-05-01 11:27:56 +02:00
commit 2c6c03869c
38 changed files with 1576 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#ifndef DATAINTERFACE_DATATYPE_H
#define DATAINTERFACE_DATATYPE_H
#include <string>
namespace DataStorageInterface {
namespace DataInterface {
class DataType
{
public:
enum type
{
None,
Float,
String
};
};
DataType::type GetDataType(const std::string& value);
namespace Conversions {
DataType::type DataType(const std::string& datatype);
std::string DataType(DataType::type datatype);
} // namespace Conversions
} // namespace DataInterface
} // namespace DataStorageInterface
#endif // DATAINTERFACE_DATATYPE_H