CMS 3D CMS Logo

FWParameterBase.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_FWParameterBase_h
2 #define Fireworks_Core_FWParameterBase_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : FWParameterBase
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Sat Feb 23 13:35:15 EST 2008
19 //
20 
21 // system include files
22 #include <string>
23 
24 // user include files
26 
27 // forward declarations
28 class FWConfiguration;
29 class FWParameterizable;
30 
32 public:
33  FWParameterBase(FWParameterizable* iParent, const std::string& iName);
34  ~FWParameterBase() override;
35 
36  // ---------- const member functions ---------------------
37 
38  //virtual void addTo(FWConfiguration& ) const = 0;
39  const std::string& name() const { return m_name; }
40 
41  // ---------- static member functions --------------------
42 
43  // ---------- member functions ---------------------------
44  //virtual void setFrom(const FWConfiguration&) = 0;
45 
46  FWParameterBase(const FWParameterBase&) = delete; // stop default
47  const FWParameterBase& operator=(const FWParameterBase&) = delete; // stop default
48 private:
49  // ---------- member data --------------------------------
50 
52 };
53 
54 #endif
const FWParameterBase & operator=(const FWParameterBase &)=delete
const std::string & name() const
~FWParameterBase() override
std::string m_name
FWParameterBase(FWParameterizable *iParent, const std::string &iName)