/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/FWLite/src/AutoLibraryLoader.cc
46 строк
1 KB
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: LibraryLoader // Class : AutoLibraryLoader // // Implementation: // <Notes on implementation> // // Original Author: // Created: Wed Nov 30 14:55:01 EST 2005 // // system include files #include <iostream> // user include files #include "FWCore/FWLite/interface/AutoLibraryLoader.h" #include "FWCore/FWLite/interface/FWLiteEnabler.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // AutoLibraryLoader::AutoLibraryLoader() {} // // member functions // void AutoLibraryLoader::enable() { std::cerr << "WARNING: AutoLibraryloader::enable() and AutoLibraryLoader.h are deprecated.\n" << "Use FWLiteEnabler::enable() and FWLiteEnabler.h instead" << std::endl; FWLiteEnabler::enable(); } void AutoLibraryLoader::loadAll() { std::cerr << "WARNING: AutoLibraryloader::loadAll() and AutoLibraryLoader.h are deprecated.\n" << "Use FWLiteEnabler::enable() and FWLiteEnabler.h instead" << std::endl; FWLiteEnabler::enable(); }