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 {
33 public:
34  FWParameterBase(FWParameterizable* iParent, const std::string& iName);
35  ~FWParameterBase() override;
36 
37  // ---------- const member functions ---------------------
38 
39  //virtual void addTo(FWConfiguration& ) const = 0;
40  const std::string& name() const { return m_name; }
41 
42  // ---------- static member functions --------------------
43 
44  // ---------- member functions ---------------------------
45  //virtual void setFrom(const FWConfiguration&) = 0;
46 
47 private:
48  FWParameterBase(const FWParameterBase&) = delete; // stop default
49  const FWParameterBase& operator=(const FWParameterBase&) = delete; // stop default
50 
51  // ---------- member data --------------------------------
52 
54 };
55 
56 #endif
const FWParameterBase & operator=(const FWParameterBase &)=delete
~FWParameterBase() override
std::string m_name
const std::string & name() const
FWParameterBase(FWParameterizable *iParent, const std::string &iName)