/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/PluginManager/interface/standard.h
41 строка
881 B
camolezi
Migrate from boost::filesystem to standard C++17 std::filesystem
24 июл 2020, 22:40
24 июл 2020, 22:40
56ad411
Код
Авторство
О чём код?
#ifndef FWCore_PluginManager_standard_h #define FWCore_PluginManager_standard_h // -*- C++ -*- // // Package: PluginManager // Class : standard // /**\class standard standard.h FWCore/PluginManager/interface/standard.h Description: namespace which holds the standard configuration information Usage: <usage> */ // // Original Author: Chris Jones // Created: Sat Apr 7 17:06:34 EDT 2007 // // system include files #include <filesystem> #include <string> // user include files #include "FWCore/PluginManager/interface/PluginManager.h" // forward declarations namespace edmplugin { namespace standard { PluginManager::Config config(); const std::filesystem::path& cachefileName(); const std::filesystem::path& poisonedCachefileName(); const std::string& pluginPrefix(); } // namespace standard } // namespace edmplugin #endif