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
+24
View File
@@ -0,0 +1,24 @@
#ifndef DATAINTERFACE_RRA_H
#define DATAINTERFACE_RRA_H
namespace DataStorageInterface {
namespace DataInterface {
class RRA
{
public:
enum type
{
Raw = 1,
Daily = 300,
Weekly = 1800,
Monthly = 7200,
Yearly = 86400
};
};
} // namespace DataInterface
} // namespace DataStorageInterface
#endif // DATAINTERFACE_RRA_H