Acacia
atspi_table_interface.h
1 #ifndef INCLUDE_ACACIA_ATSPI_ATSPI_TABLE_INTERFACE_H_
2 #define INCLUDE_ACACIA_ATSPI_ATSPI_TABLE_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 AtspiTableInterface : public AtspiInterface<AtspiTable> {
20  public:
22 
28  std::string toString() const override;
29 
35  int getNColumns() const;
36 
42  int getNRows() const;
43 };
44 
45 } // namespace acacia
46 
47 #endif // INCLUDE_ACACIA_ATSPI_ATSPI_TABLE_INTERFACE_H_
Definition: atspi_interface.h:18
Definition: atspi_table_interface.h:19
std::string toString() const override