plugin_libpath.h
Go to the documentation of this file.
1 #ifndef cetlib_plugin_libpath_h
2 #define cetlib_plugin_libpath_h
3 
4 namespace cet {
5  // Return the name of the environment variable that defines the
6  // search path for the dynamic library loader on this operating
7  // system.
8  constexpr char const* plugin_libpath();
9 }
10 
11 inline constexpr char const*
13 {
14  return "CET_PLUGIN_PATH";
15 }
16 
17 #endif /* cetlib_plugin_libpath_h */
18 
19 // Local Variables:
20 // mode: c++
21 // End:
constexpr char const * plugin_libpath()