Acacia
atspi_component_interface.h
1 #ifndef INCLUDE_ACACIA_ATSPI_ATSPI_COMPONENT_INTERFACE_H_
2 #define INCLUDE_ACACIA_ATSPI_ATSPI_COMPONENT_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 AtspiComponentInterface : public AtspiInterface<AtspiComponent> {
20  public:
21  using AtspiInterface::AtspiInterface;
22 
28  std::string toString() const override;
29 
37  std::pair<int, int> getPosition() const;
38 
46  std::pair<int, int> getSize() const;
47 };
48 
49 } // namespace acacia
50 
51 #endif // INCLUDE_ACACIA_ATSPI_ATSPI_COMPONENT_INTERFACE_H_
Definition: atspi_component_interface.h:19
Definition: atspi_interface.h:18
std::pair< int, int > getSize() const
std::pair< int, int > getPosition() const
std::string toString() const override