RRA.h 334 B

123456789101112131415161718192021222324
  1. #ifndef DATAINTERFACE_RRA_H
  2. #define DATAINTERFACE_RRA_H
  3. namespace DataStorageInterface {
  4. namespace DataInterface {
  5. class RRA
  6. {
  7. public:
  8. enum type
  9. {
  10. Raw = 1,
  11. Daily = 300,
  12. Weekly = 1800,
  13. Monthly = 7200,
  14. Yearly = 86400
  15. };
  16. };
  17. } // namespace DataInterface
  18. } // namespace DataStorageInterface
  19. #endif // DATAINTERFACE_RRA_H