Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:59

0001 #ifndef FWCore_PluginManager_standard_h
0002 #define FWCore_PluginManager_standard_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     PluginManager
0006 // Class  :     standard
0007 //
0008 /**\class standard standard.h FWCore/PluginManager/interface/standard.h
0009 
0010  Description: namespace which holds the standard configuration information
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Sat Apr  7 17:06:34 EDT 2007
0019 //
0020 
0021 // system include files
0022 #include <filesystem>
0023 #include <string>
0024 
0025 // user include files
0026 #include "FWCore/PluginManager/interface/PluginManager.h"
0027 
0028 // forward declarations
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   }  // namespace standard
0040 }  // namespace edmplugin
0041 #endif