MINT2
INamedParameter.h
Go to the documentation of this file.
1 #ifndef INAMED_PARAMETER_HH
2 #define INAMED_PARAMETER_HH
3 // author: Jonas Rademacker (Jonas.Rademacker@bristol.ac.uk)
4 // status: Mon 9 Feb 2009 19:17:55 GMT
5 
6 #include <string>
8 
9 namespace MINT{
11  protected:
13  public:
14  virtual ~INamedParameter(){};
15 
16  virtual bool setFromParsedLine(const ParsedParameterLine& line)=0;
17  virtual const std::string& name() const=0;
18 
19 };
20 }//namespace MINT
21 #endif
22 //
virtual const std::string & name() const =0
virtual bool setFromParsedLine(const ParsedParameterLine &line)=0