output_to.h
Go to the documentation of this file.
1 #ifndef art_Framework_Art_detail_output_to_h
2 #define art_Framework_Art_detail_output_to_h
3 
4 #include <string>
5 
6 namespace art::detail {
7  // The following functions allow a user to specify case-insensitive
8  // strings such as "STDOUT", "cout", "STDERR", or "CERR" to indicate
9  // that sending to an output to STDOUT or STDERR is desired.
10  bool output_to_stderr(std::string const& spec);
11  bool output_to_stdout(std::string const& spec);
12 }
13 
14 #endif /* art_Framework_Art_detail_output_to_h */
15 
16 // Local Variables:
17 // mode: c++
18 // End:
std::string string
Definition: nybbler.cc:12
bool output_to_stderr(std::string const &spec)
Definition: output_to.cc:15
bool output_to_stdout(std::string const &spec)
Definition: output_to.cc:21