Wanted.h
Go to the documentation of this file.
1 #ifndef art_test_Integration_Wanted_h
2 #define art_test_Integration_Wanted_h
3 // vim: set sw=2 expandtab :
4 
9 
10 namespace art {
11  namespace test {
12 
13  class Wanted {
14 
15  public:
16  explicit Wanted(fhicl::ParameterSet const&) {}
17 
18  int
20  {
21  return cached_value_;
22  }
23 
24  void
25  setValue(int const value)
26  {
28  }
29 
30  private:
32  };
33 
34  } // namespace test
35 } // namespace art
36 
38 
39 #endif /* art_test_Integration_Wanted_h */
40 
41 // Local Variables:
42 // mode: c++
43 // End:
void setValue(int const value)
Definition: Wanted.h:25
int cached_value_
Definition: Wanted.h:31
Definition: test.py:1
#define DECLARE_ART_SERVICE(svc, scope)
Definition: ServiceMacros.h:86
int getCachedValue() const
Definition: Wanted.h:19
Wanted(fhicl::ParameterSet const &)
Definition: Wanted.h:16