1 #ifndef LIB_IA2_IA_TABLE_CELL_H_
2 #define LIB_IA2_IA_TABLE_CELL_H_
6 #include <wrl/client.h>
8 #include "acacia/export.h"
9 #include "third_party/ia2/include/ia2/ia2_api_all.h"
15 IATableCell(Microsoft::WRL::ComPtr<IAccessibleTableCell> iface)
19 bool isNull() {
return !iface_; }
20 std::string toString();
21 long getColumnExtent();
22 long getColumnIndex();
27 Microsoft::WRL::ComPtr<IAccessibleTableCell> iface_;
Definition: ia_table_cell.h:13