00001 #ifndef AGILE_CHARYBDIS_HH 00002 #define AGILE_CHARYBDIS_HH 00003 00004 #include "AGILe/Generator.hh" 00005 #include "AGILe/Charybdis/CharybdisWrapper.hh" 00006 00007 namespace AGILe { 00008 00009 00012 class Charybdis : public Generator { 00013 public: 00015 Charybdis() { } 00016 00018 ~Charybdis() { } 00019 00020 // /// Make sure that generic setParam is visible. 00021 // using Generator::setParam; 00022 00024 bool setParam(const string& name, const string& value); 00025 00026 // Reqd for compilation 00027 void finalize() { } 00028 void setGenSpecificInitialState(int, double, int, double) { } 00029 }; 00030 00031 00032 } 00033 00034 #endif