Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:31

0001 #ifndef Fireworks_Core_FWIntValueListenerBase_h
0002 #define Fireworks_Core_FWIntValueListenerBase_h
0003 
0004 #include "Rtypes.h"
0005 
0006 class FWIntValueListenerBase {
0007 public:
0008   FWIntValueListenerBase() {}
0009   virtual ~FWIntValueListenerBase() {}
0010 
0011   // ---------- member functions ---------------------------
0012   void setValue(Int_t entry);
0013   virtual void setValueImp(Int_t entry) = 0;
0014 
0015   ClassDef(FWIntValueListenerBase, 0);
0016 
0017 private:
0018   FWIntValueListenerBase(const FWIntValueListenerBase&);                   // stop default
0019   const FWIntValueListenerBase& operator=(const FWIntValueListenerBase&);  // stop default
0020 };
0021 
0022 #endif