blob: 0fef7507a11c6b42f268908caeaa4290344b3e4d [file] [log] [blame]
#ifndef TYPE_H_
#define TYPE_H_
#include <android-base/macros.h>
namespace android {
struct Formatter;
struct Type {
Type();
virtual ~Type();
virtual void dump(Formatter &out) const = 0;
private:
DISALLOW_COPY_AND_ASSIGN(Type);
};
} // namespace android
#endif // TYPE_H_