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