Go to the documentation of this file.00001 #ifndef FCAM_F2_SHUTTERBUTTON_H
00002 #define FCAM_F2_SHUTTERBUTTON_H
00003
00009 #include "../Event.h"
00010
00011 namespace FCam { namespace F2 {
00013 class PhidgetShutterButton;
00016 class ShutterButton : public EventGenerator {
00017 public:
00019 virtual std::string getEventString(const Event &) const;
00022 ShutterButton(int halfPress = 1, int fullPress = 0);
00023 ~ShutterButton();
00024
00025 protected:
00026 PhidgetShutterButton *impl;
00027
00028
00029 };
00030 }
00031 }
00032
00033 #endif