Acacia
atspi_value_interface.h
1 #ifndef INCLUDE_ACACIA_ATSPI_ATSPI_VALUE_INTERFACE_H_
2 #define INCLUDE_ACACIA_ATSPI_ATSPI_VALUE_INTERFACE_H_
3 
4 #include "acacia/atspi/atspi_interface.h"
5 
6 #include <string>
7 
8 #include <atspi/atspi.h>
9 
10 namespace acacia {
11 
19 class AtspiValueInterface : public AtspiInterface<AtspiValue> {
20  public:
22 
28  std::string toString() const override;
29 
35  double getCurrentValue() const;
36 
42  double getMaximumValue() const;
43 
49  double getMinimumValue() const;
50 };
51 
52 } // namespace acacia
53 
54 #endif // INCLUDE_ACACIA_ATSPI_ATSPI_VALUE_INTERFACE_H_
Definition: atspi_interface.h:18
Definition: atspi_value_interface.h:19
double getMaximumValue() const
double getCurrentValue() const
double getMinimumValue() const
std::string toString() const override