Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef FWCore_PluginManager_PluginInfo_h
0002 #define FWCore_PluginManager_PluginInfo_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     PluginManager
0006 // Class  :     PluginInfo
0007 //
0008 /**\class PluginInfo PluginInfo.h FWCore/PluginManager/interface/PluginInfo.h
0009 
0010  Description: Holds information about a particular plugin
0011 
0012  Usage:
0013     
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Wed Apr  4 19:46:31 EDT 2007
0019 //
0020 
0021 // system include files
0022 #include <filesystem>
0023 
0024 // user include files
0025 
0026 // forward declarations
0027 namespace edmplugin {
0028   struct PluginInfo {
0029     std::string name_;
0030     std::filesystem::path loadable_;
0031   };
0032 }  // namespace edmplugin
0033 #endif