| 123456789101112131415161718192021222324 |
- #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
|