Zero  0.1.0
nodbgen.h
Go to the documentation of this file.
1 #ifndef __NODBGEN_H
2 #define __NODBGEN_H
3 
4 #include "command.h"
5 
6 class NoDBGen : public Command {
7 public:
8  void setupOptions();
9 
10  void run();
11 
12 protected:
13  void handlePage(fixable_page_h& p);
14 
15 private:
16  string dbfile;
17 
18  string logdir;
19 };
20 
21 #endif // __NODBGEN_H
void setupOptions()
Definition: nodbgen.cpp:8
Definition: command.h:14
void handlePage(fixable_page_h &p)
Definition: nodbgen.cpp:18
void run()
Definition: nodbgen.cpp:24
string dbfile
Definition: nodbgen.h:16
Handle class for pages that may be fixed (i.e., paged in by the main buffer manager, zero::buffer_pool::BufferPool)
Definition: fixable_page_h.h:26
Definition: nodbgen.h:6
string logdir
Definition: nodbgen.h:18