getenv.h
Go to the documentation of this file.
1 #ifndef cetlib_getenv_h
2 #define cetlib_getenv_h
3 
4 // ======================================================================
5 //
6 // getenv: Obtain value of environment variable; throw if none such
7 //
8 // ======================================================================
9 
10 #include <new>
11 #include <string>
12 
13 namespace cet {
15  std::string getenv(std::string const& name, std::nothrow_t);
16 }
17 
18 // ======================================================================
19 
20 #endif /* cetlib_getenv_h */
21 
22 // Local variables:
23 // mode: c++
24 // End:
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
std::string getenv(std::string const &name)
Definition: getenv.cc:15