00001 00006 #ifndef __EVENT_DATABASE_H__ 00007 #define __EVENT_DATABASE_H__ 00008 00009 #include <list> 00010 00011 class Event; 00012 00013 using namespace std; 00014 00015 00024 class EventDatabase { 00025 00026 public: 00027 00029 bool put(list<Event> events); 00030 00032 bool flush(); 00033 00035 void processTestQuery(string query_text); 00036 00037 }; 00038 00039 00040 #endif // __EVENT_DATABASE_H__