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