summaryrefslogtreecommitdiff
path: root/tools/aapt2/ValueTransformer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/aapt2/ValueTransformer.h')
-rw-r--r--tools/aapt2/ValueTransformer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt2/ValueTransformer.h b/tools/aapt2/ValueTransformer.h
index 692511132012..6fc4a191b04b 100644
--- a/tools/aapt2/ValueTransformer.h
+++ b/tools/aapt2/ValueTransformer.h
@@ -37,6 +37,7 @@ struct Style;
struct Array;
struct Plural;
struct Styleable;
+struct Macro;
#define AAPT_TRANSFORM_VALUE(T) \
virtual std::unique_ptr<T> TransformDerived(const T* value) = 0; \
@@ -97,6 +98,7 @@ struct ValueTransformer {
AAPT_TRANSFORM_VALUE(Array);
AAPT_TRANSFORM_VALUE(Plural);
AAPT_TRANSFORM_VALUE(Styleable);
+ AAPT_TRANSFORM_VALUE(Macro);
protected:
StringPool* const pool_;