gphoto2pp
A C++ Wrapper for libgphoto2
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
range_widget.hpp
Go to the documentation of this file.
1 
25 #ifndef RANGEWIDGET_HPP
26 #define RANGEWIDGET_HPP
27 
28 #include "float_widget.hpp"
29 
30 namespace gphoto2pp
31 {
32  struct RangeWidgetRange;
33 
38  class RangeWidget: public FloatWidget
39  {
40  friend class NonValueWidget;
41 
42  public:
49  RangeWidgetRange getRange() const;
50 
56  std::string ToString() const;
57 
58  protected:
59  RangeWidget(gphoto2::_CameraWidget* cameraWidget);
60  };
61 
62 }
63 
64 #endif // RANGEWIDGET_HPP