blob: 5251f9d840570b0cd250b27453793275dc0f113f [file] [log] [blame]
Andreas Huberc9410c72016-07-28 12:18:40 -07001#include "Type.h"
2
3namespace android {
4
5Type::Type() {}
6Type::~Type() {}
7
Andreas Huber5345ec22016-07-29 13:33:27 -07008bool Type::isScope() const {
9 return false;
10}
11
Andreas Huberc9410c72016-07-28 12:18:40 -070012} // namespace android
13