File indexing completed on 2024-04-06 12:12:59
0001 #ifndef FWCore_PluginManager_standard_h
0002 #define FWCore_PluginManager_standard_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include <filesystem>
0023 #include <string>
0024
0025
0026 #include "FWCore/PluginManager/interface/PluginManager.h"
0027
0028
0029
0030 namespace edmplugin {
0031 namespace standard {
0032
0033 PluginManager::Config config();
0034
0035 const std::filesystem::path& cachefileName();
0036 const std::filesystem::path& poisonedCachefileName();
0037
0038 const std::string& pluginPrefix();
0039 }
0040 }
0041 #endif