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 {
00012 namespace F2 {
00014 class PhidgetShutterButton;
00017 class ShutterButton : public EventGenerator {
00018 public:
00020 virtual std::string getEventString(const Event &) const;
00023 ShutterButton(int halfPress = 1, int fullPress = 0);
00024 ~ShutterButton();
00025
00026 protected:
00027 PhidgetShutterButton *impl;
00028
00029
00030 };
00031 }
00032 }
00033
00034 #endif