gphoto2pp
A C++ Wrapper for libgphoto2
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
int_widget.hpp
Go to the documentation of this file.
1 
25 #ifndef INTWIDGET_HPP
26 #define INTWIDGET_HPP
27 
28 #include "value_widget_base.hpp"
29 
30 namespace gphoto2pp
31 {
36  class IntWidget: public ValueWidgetBase<int>
37  {
38  friend class NonValueWidget;
39 
40  public:
47  int getValue() const override;
48 
55  void setValue(int const & value) override;
56 
57  protected:
58  IntWidget(gphoto2::_CameraWidget* cameraWidget);
59  };
60 
61 }
62 
63 #endif // INTWIDGET_HPP