/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Reflection/interface/BaseWithDict.h
35 строк
727 B
Chris Jones
Moved code to new FWCore/Reflection package
20 июн 2019, 15:10
20 июн 2019, 15:10
a88734e
Код
Авторство
О чём код?
#ifndef FWCore_Reflection_BaseWithDict_h #define FWCore_Reflection_BaseWithDict_h /*---------------------------------------------------------------------- BaseWithDict: A holder for a base class ----------------------------------------------------------------------*/ #include <string> class TBaseClass; namespace edm { class TypeWithDict; class BaseWithDict { private: TBaseClass* baseClass_; public: BaseWithDict(); explicit BaseWithDict(TBaseClass*); bool isPublic() const; std::string name() const; TypeWithDict typeOf() const; size_t offset() const; }; } // namespace edm #include "FWCore/Reflection/interface/TypeWithDict.h" #endif // FWCore_Reflection_BaseWithDict_h