00001 // regexT.h 00002 00003 #ifndef I_regexT_H 00004 #define I_regexT_H 00005 00006 #include <string> 00007 00008 using std::string ; 00009 00010 #include "baseApp.h" 00011 00012 class regexT : public baseApp { 00013 private: 00014 string _keyFile ; 00015 public: 00016 regexT(void) : baseApp() {} 00017 virtual ~regexT(void) {} 00018 virtual int run(void); 00019 }; 00020 00021 #endif 00022