00001 #ifndef FWCore_PluginManager_PluginInfo_h 00002 #define FWCore_PluginManager_PluginInfo_h 00003 // -*- C++ -*- 00004 // 00005 // Package: PluginManager 00006 // Class : PluginInfo 00007 // 00016 // 00017 // Original Author: Chris Jones 00018 // Created: Wed Apr 4 19:46:31 EDT 2007 00019 // $Id: PluginInfo.h,v 1.2 2007/04/12 12:51:12 wmtan Exp $ 00020 // 00021 00022 // system include files 00023 #include <boost/filesystem/path.hpp> 00024 00025 // user include files 00026 00027 // forward declarations 00028 namespace edmplugin { 00029 struct PluginInfo { 00030 std::string name_; 00031 boost::filesystem::path loadable_; 00032 }; 00033 } 00034 #endif