/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWParameterBase.h
54 строки
1 KB
Shahzad Malik Muzaffar
[Fireworks][clang-tidy] modernize-use-equals-delete suggests to make deleted member function public
28 июл 2021, 12:33
28 июл 2021, 12:33
68a6350
Код
Авторство
О чём код?
#ifndef Fireworks_Core_FWParameterBase_h #define Fireworks_Core_FWParameterBase_h // -*- C++ -*- // // Package: Core // Class : FWParameterBase // /**\class FWParameterBase FWParameterBase.h Fireworks/Core/interface/FWParameterBase.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Chris Jones // Created: Sat Feb 23 13:35:15 EST 2008 // // system include files #include <string> // user include files #include "Fireworks/Core/interface/FWConfigurable.h" // forward declarations class FWConfiguration; class FWParameterizable; class FWParameterBase : public FWConfigurable { public: FWParameterBase(FWParameterizable* iParent, const std::string& iName); ~FWParameterBase() override; // ---------- const member functions --------------------- //virtual void addTo(FWConfiguration& ) const = 0; const std::string& name() const { return m_name; } // ---------- static member functions -------------------- // ---------- member functions --------------------------- //virtual void setFrom(const FWConfiguration&) = 0; FWParameterBase(const FWParameterBase&) = delete; // stop default const FWParameterBase& operator=(const FWParameterBase&) = delete; // stop default private: // ---------- member data -------------------------------- std::string m_name; }; #endif