Zero  0.1.0
genarchive.h
Go to the documentation of this file.
1 #ifndef __GENARCHIVE_H
2 #define __GENARCHIVE_H
3 
4 #include "command.h"
5 
6 class GenArchive : public Command {
7 public:
8  void setupOptions();
9 
10  void run();
11 
12 private:
13  string logdir;
14 
15  string archdir;
16 
17  long maxLogSize;
18 
19  size_t bucketSize;
20 };
21 
22 #endif // __GENARCHIVE_H
void setupOptions()
Definition: genarchive.cpp:9
long maxLogSize
Definition: genarchive.h:17
Definition: command.h:14
string archdir
Definition: genarchive.h:15
size_t bucketSize
Definition: genarchive.h:19
void run()
Definition: genarchive.cpp:22
Definition: genarchive.h:6
string logdir
Definition: genarchive.h:13