SubtractNumber_tool.cc
Go to the documentation of this file.
3 
4 namespace fhicl {
5  class ParameterSet;
6 }
7 
8 namespace arttest {
9  class SubtractNumber : public OperationBase {
10  public:
11  explicit SubtractNumber(fhicl::ParameterSet const&) {}
12 
13  private:
14  void
15  do_adjustNumber(int& i) const override
16  {
17  --i;
18  }
19  };
20 } // namespace arttest
21 
#define DEFINE_ART_CLASS_TOOL(tool)
Definition: ToolMacros.h:42
void do_adjustNumber(int &i) const override
SubtractNumber(fhicl::ParameterSet const &)