00001 #ifndef PLUGINLIB_TEST_BASE_H_ 00002 #define PLUGINLIB_TEST_BASE_H_ 00003 00004 namespace test_base 00005 { 00006 class Fubar 00007 { 00008 public: 00009 virtual void initialize(double foo) = 0; 00010 virtual double result() = 0; 00011 virtual ~Fubar(){} 00012 00013 protected: 00014 Fubar(){} 00015 }; 00016 }; 00017 #endif