Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-14 23:36:18

0001 #ifndef FWCore_Integration_ESTestData_h
0002 #define FWCore_Integration_ESTestData_h
0003 
0004 namespace edmtest {
0005 
0006   class ESTestDataA {
0007   public:
0008     ESTestDataA(int v) { value_ = v; }
0009     int& value() { return value_; }
0010     int const& value() const { return value_; }
0011 
0012   private:
0013     int value_;
0014   };
0015 
0016   class ESTestDataB {
0017   public:
0018     ESTestDataB(int v = 0, int w = 0) { value_ = v + w; }
0019     int& value() { return value_; }
0020     int const& value() const { return value_; }
0021 
0022   private:
0023     int value_;
0024   };
0025 
0026   class ESTestDataI {
0027   public:
0028     ESTestDataI(int v) { value_ = v; }
0029     int& value() { return value_; }
0030     int const& value() const { return value_; }
0031 
0032   private:
0033     int value_;
0034   };
0035 
0036   class ESTestDataJ {
0037   public:
0038     ESTestDataJ(int v) { value_ = v; }
0039     int& value() { return value_; }
0040     int const& value() const { return value_; }
0041 
0042   private:
0043     int value_;
0044   };
0045 
0046 }  // namespace edmtest
0047 #endif