CMS 3D CMS Logo

FWParameterBase.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWParameterBase
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Sat Feb 23 13:36:24 EST 2008
11 //
12 
13 // system include files
14 
15 // user include files
18 
19 
20 //
21 // constants, enums and typedefs
22 //
23 
24 //
25 // static data member definitions
26 //
27 
28 //
29 // constructors and destructor
30 //
31 
33  m_name(iName)
34 {
35  if (0 != iParent)
36  {
37  iParent->add(this);
38  }
39 }
40 
41 // FWParameterBase::FWParameterBase(const FWParameterBase& rhs)
42 // {
43 // // do actual copying here;
44 // }
45 
47 {
48 }
49 
50 //
51 // assignment operators
52 //
53 // const FWParameterBase& FWParameterBase::operator=(const FWParameterBase& rhs)
54 // {
55 // //An exception safe implementation is
56 // FWParameterBase temp(rhs);
57 // swap(rhs);
58 //
59 // return *this;
60 // }
61 
62 //
63 // member functions
64 //
65 
66 //
67 // const member functions
68 //
69 
70 //
71 // static member functions
72 //
void add(FWParameterBase *)
virtual ~FWParameterBase()
FWParameterBase(FWParameterizable *iParent, const std::string &iName)