00001 #ifndef PARAMETERSETRETRIEVER_H 00002 #define PARAMETERSETRETRIEVER_H 00003 00004 #include <string> 00005 00006 namespace evf { 00007 00008 class ParameterSetRetriever 00009 { 00010 public: 00011 ParameterSetRetriever(const std::string& in); 00012 std::string getAsString() const; 00013 std::string getHostString(const std::string &in) const; 00014 private: 00015 std::string pset; 00016 static const std::string fileheading; 00017 static const std::string dbheading; 00018 static const std::string webheading; 00019 00020 }; 00021 00022 } // evf 00023 00024 #endif