blob: 8016f4e90ee91d42b07f5df9390c203e9d7ae24c [file] [log] [blame]
Andreas Huberc9410c72016-07-28 12:18:40 -07001#ifndef STRING_TYPE_H_
2
3#define STRING_TYPE_H_
4
5#include "Type.h"
6
7namespace android {
8
9struct StringType : public Type {
10 StringType();
11
12 void dump(Formatter &out) const override;
13};
14
15} // namespace android
16
17#endif // STRING_TYPE_H_
18