MessagePrinter.h
Go to the documentation of this file.
1 #ifndef art_test_Integration_MessagePrinter_h
2 #define art_test_Integration_MessagePrinter_h
3 
4 #include <ostream>
5 #include <string>
6 
7 namespace fhicl {
8  class ParameterSet;
9 }
10 
11 namespace arttest {
13  public:
15  void
16  print(std::ostream& os, std::string const& msg)
17  {
18  os << msg;
19  }
20  };
21 } // namespace arttest
22 
23 #endif /* art_test_Integration_MessagePrinter_h */
24 
25 // Local variables:
26 // mode: c++
27 // End:
std::string string
Definition: nybbler.cc:12
parameter set interface
void print(std::ostream &os, std::string const &msg)
MessagePrinter(fhicl::ParameterSet const &)