ClassTool.h
Go to the documentation of this file.
1 #ifndef art_test_Utilities_tools_ClassTool_h
2 #define art_test_Utilities_tools_ClassTool_h
3 
4 namespace fhicl {
5  class ParameterSet;
6 }
7 
8 namespace arttest {
9  struct ClassTool {
11  int
12  addOne(int const i)
13  {
14  return i + 1;
15  }
16  };
17 } // namespace arttest
18 
19 #endif /* art_test_Utilities_tools_ClassTool_h */
20 
21 // Local variables:
22 // mode: c++
23 // End:
ClassTool(fhicl::ParameterSet const &)
Definition: ClassTool.h:10
int addOne(int const i)
Definition: ClassTool.h:12