/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/FWParameterBase.cc
66 строк
1 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: Core // Class : FWParameterBase // // Implementation: // <Notes on implementation> // // Original Author: Chris Jones // Created: Sat Feb 23 13:36:24 EST 2008 // // system include files // user include files #include "Fireworks/Core/interface/FWParameterBase.h" #include "Fireworks/Core/interface/FWParameterizable.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // FWParameterBase::FWParameterBase(FWParameterizable* iParent, const std::string& iName) : m_name(iName) { if (nullptr != iParent) { iParent->add(this); } } // FWParameterBase::FWParameterBase(const FWParameterBase& rhs) // { // // do actual copying here; // } FWParameterBase::~FWParameterBase() {} // // assignment operators // // const FWParameterBase& FWParameterBase::operator=(const FWParameterBase& rhs) // { // //An exception safe implementation is // FWParameterBase temp(rhs); // swap(rhs); // // return *this; // } // // member functions // // // const member functions // // // static member functions //