/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondDB/interface/CoralServiceFactory.h
37 строк
1 KB
Cms Build
Clang-Format
29 май 2019, 08:23
29 май 2019, 08:23
087900c
Код
Авторство
О чём код?
#ifndef CondCore_CondDB_CoralServiceFactory_h #define CondCore_CondDB_CoralServiceFactory_h #include "FWCore/PluginManager/interface/PluginFactory.h" #include "CondCore/CondDB/interface/CoralServiceWrapper.h" #include <string> // // Package: CondCore/CondDB // Class : CoralServiceFactory // /**\class CoralServiceFactory CoralServiceFactory.h CondCore/CondDB/interface/CoralServiceFactory.h Description: A special edm plugin factory that creates coral::Service Usage: used internally by CoralServiceManager to create coral::Service as edm plugin */ // // Original Author: Zhen Xie // Created: Wed Nov 12 10:57:47 CET 2008 // $Id $ // namespace coral { class Service; } namespace cond { typedef edmplugin::PluginFactory<cond::CoralServiceWrapperBase*()> CoralServicePluginFactory; class CoralServiceFactory { public: ~CoralServiceFactory(); static CoralServiceFactory* get(); coral::Service* create(const std::string& componentname) const; private: CoralServiceFactory(); }; } // namespace cond #endif