CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 // $Id: FWParameterBase.h,v 1.4 2012/02/22 03:45:57 amraktad Exp $
20 //
21 
22 // system include files
23 #include <string>
24 
25 // user include files
27 
28 // forward declarations
29 class FWConfiguration;
30 class FWParameterizable;
31 
33 {
34 public:
35  FWParameterBase(FWParameterizable* iParent, const std::string& iName);
36  virtual ~FWParameterBase();
37 
38  // ---------- const member functions ---------------------
39 
40  //virtual void addTo(FWConfiguration& ) const = 0;
41  const std::string& name() const { return m_name; }
42 
43  // ---------- static member functions --------------------
44 
45  // ---------- member functions ---------------------------
46  //virtual void setFrom(const FWConfiguration&) = 0;
47 
48 private:
49  FWParameterBase(const FWParameterBase&); // stop default
50  const FWParameterBase& operator=(const FWParameterBase&); // stop default
51 
52  // ---------- member data --------------------------------
53 
55 };
56 
57 #endif
const FWParameterBase & operator=(const FWParameterBase &)
std::string m_name
virtual ~FWParameterBase()
const std::string & name() const
FWParameterBase(FWParameterizable *iParent, const std::string &iName)