summaryrefslogtreecommitdiff
path: root/sfntly/table/core/horizontal_header_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'sfntly/table/core/horizontal_header_table.h')
-rw-r--r--sfntly/table/core/horizontal_header_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfntly/table/core/horizontal_header_table.h b/sfntly/table/core/horizontal_header_table.h
index c79a7b6..71f30b4 100644
--- a/sfntly/table/core/horizontal_header_table.h
+++ b/sfntly/table/core/horizontal_header_table.h
@@ -18,6 +18,7 @@
#define SFNTLY_CPP_SRC_SFNTLY_TABLE_CORE_HORIZONTAL_HEADER_TABLE_H_
#include "sfntly/table/table.h"
+#include "sfntly/table/table_based_table_builder.h"
namespace sfntly {
@@ -26,8 +27,7 @@ class HorizontalHeaderTable : public Table,
public RefCounted<HorizontalHeaderTable> {
public:
// Builder for a Horizontal Header table - 'hhea'.
- class Builder : public Table::TableBasedTableBuilder,
- public RefCounted<Builder> {
+ class Builder : public TableBasedTableBuilder, public RefCounted<Builder> {
public:
// Constructor scope altered to public because C++ does not allow base
// class to instantiate derived class with protected constructors.