![]() |
![]() |
00001 #ifndef Fireworks_Core_FWIntValueListener_h 00002 #define Fireworks_Core_FWIntValueListener_h 00003 00004 #include "Fireworks/Core/interface/FWIntValueListenerBase.h" 00005 #include <sigc++/sigc++.h> 00006 00007 class FWIntValueListener : public FWIntValueListenerBase { 00008 public: 00009 FWIntValueListener() : FWIntValueListenerBase() { 00010 } 00011 virtual ~FWIntValueListener() { 00012 } 00013 00014 // ---------- member, functions ------------------------- 00015 virtual void setValueImp(Int_t entry); 00016 sigc::signal<void,Int_t> valueChanged_; 00017 00018 private: 00019 FWIntValueListener(const FWIntValueListener&); // stop default 00020 const FWIntValueListener& operator=(const FWIntValueListener&); // stop default 00021 }; 00022 00023 #endif