/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWSimpleRepresentationChecker.h
55 строк
2 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_FWSimpleRepresentationChecker_h #define Fireworks_Core_FWSimpleRepresentationChecker_h // -*- C++ -*- // // Package: Core // Class : FWSimpleRepresentationChecker // /**\class FWSimpleRepresentationChecker FWSimpleRepresentationChecker.h Fireworks/Core/interface/FWSimpleRepresentationChecker.h Description: Used to check to see if a Simple proxy builder could be used to represent a particular type Usage: <usage> */ // // Original Author: Chris Jones // Created: Tue Nov 25 10:54:22 EST 2008 // // system include files #include "FWCore/Reflection/interface/TypeWithDict.h" // user include files #include "Fireworks/Core/interface/FWRepresentationCheckerBase.h" // forward declarations class FWSimpleRepresentationChecker : public FWRepresentationCheckerBase { public: FWSimpleRepresentationChecker(const std::string& iTypeidName, const std::string& iPurpose, unsigned int iBitPackedViews, bool iRepresentsSubPart, bool iRequiresFF = false); ~FWSimpleRepresentationChecker() override; // ---------- const member functions --------------------- FWRepresentationInfo infoFor(const std::string& iTypeName) const override; // ---------- static member functions -------------------- // ---------- member functions --------------------------- static bool inheritsFrom(const edm::TypeWithDict& iChild, const std::string& iParentTypeName, unsigned int& distance); FWSimpleRepresentationChecker(const FWSimpleRepresentationChecker&) = delete; // stop default const FWSimpleRepresentationChecker& operator=(const FWSimpleRepresentationChecker&) = delete; // stop default private: // ---------- member data -------------------------------- const std::string m_typeidName; }; #endif