CARMA C++
LogIndexer.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_LOGINDEXER_H
2 #define CARMA_DBMS_LOGINDEXER_H
4 #include "carma/util/Time.h"
5 #include <iostream>
6 #include <iomanip>
7 #include <fstream>
8 #include <string>
9 #include <vector>
10 #include <map>
11 
12 
19 namespace carma {
20  namespace dbms {
21 
39  class LogIndexer
40  {
41 
42  public:
43 
48  LogIndexer();
49 
51  virtual ~LogIndexer();
52 
53  private:
54  };
55  }
56 }
57 
58 #endif // CARMA_DBMS_LOGINDEXER_H
Common time functions.
virtual ~LogIndexer()
The destructor.
This class is responsible for keeping the history of what syslog2Db has already processed and initial...
Definition: LogIndexer.h:39
LogIndexer()
Constructor.