blob: 136cb8851fbece51401d1291b7ecf183cbe7c112 [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 Hubera2723d22016-07-29 15:36:07 -070012bool Type::isInterface() const {
13 return false;
14}
15
Andreas Huberc9410c72016-07-28 12:18:40 -070016} // namespace android
17