25 lines
334 B
C++
25 lines
334 B
C++
#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
|