Zero  0.1.0
dbscan.h
Go to the documentation of this file.
1 #ifndef __DBSCAN_H
2 #define __DBSCAN_H
3 
4 #include "command.h"
5 
6 class DBScan : public Command {
7 public:
8  void setupOptions();
9 
10  void run();
11 
12 protected:
13  virtual void handlePage(PageID pid, const generic_page& page, vol_t* vol);
14 
15 private:
16  string dbfile;
17 
19 };
20 
21 #endif // __DBSCAN_H
virtual void handlePage(PageID pid, const generic_page &page, vol_t *vol)
Definition: dbscan.cpp:16
void run()
Definition: dbscan.cpp:33
Definition: vol.h:21
A generic page view: any Zero page can be viewed as being of this type but it only exposes fields sha...
Definition: generic_page.h:121
Definition: command.h:14
PageID req_pid
Definition: dbscan.h:18
uint32_t PageID
Definition: basics.h:45
void setupOptions()
Definition: dbscan.cpp:6
string dbfile
Definition: dbscan.h:16
Definition: dbscan.h:6