Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:42

0001 // -*- C++ -*-
0002 //
0003 // Package:     Core
0004 // Class  :     FWParameterBase
0005 //
0006 // Implementation:
0007 //     <Notes on implementation>
0008 //
0009 // Original Author:  Chris Jones
0010 //         Created:  Sat Feb 23 13:36:24 EST 2008
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "Fireworks/Core/interface/FWParameterBase.h"
0017 #include "Fireworks/Core/interface/FWParameterizable.h"
0018 
0019 //
0020 // constants, enums and typedefs
0021 //
0022 
0023 //
0024 // static data member definitions
0025 //
0026 
0027 //
0028 // constructors and destructor
0029 //
0030 
0031 FWParameterBase::FWParameterBase(FWParameterizable* iParent, const std::string& iName) : m_name(iName) {
0032   if (nullptr != iParent) {
0033     iParent->add(this);
0034   }
0035 }
0036 
0037 // FWParameterBase::FWParameterBase(const FWParameterBase& rhs)
0038 // {
0039 //    // do actual copying here;
0040 // }
0041 
0042 FWParameterBase::~FWParameterBase() {}
0043 
0044 //
0045 // assignment operators
0046 //
0047 // const FWParameterBase& FWParameterBase::operator=(const FWParameterBase& rhs)
0048 // {
0049 //   //An exception safe implementation is
0050 //   FWParameterBase temp(rhs);
0051 //   swap(rhs);
0052 //
0053 //   return *this;
0054 // }
0055 
0056 //
0057 // member functions
0058 //
0059 
0060 //
0061 // const member functions
0062 //
0063 
0064 //
0065 // static member functions
0066 //