summaryrefslogtreecommitdiffstats
path: root/type_cpp.h
diff options
context:
space:
mode:
Diffstat (limited to 'type_cpp.h')
-rw-r--r--type_cpp.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/type_cpp.h b/type_cpp.h
index 1130839..0a6a4a9 100644
--- a/type_cpp.h
+++ b/type_cpp.h
@@ -87,27 +87,6 @@ class Type : public ValidatableType {
DISALLOW_COPY_AND_ASSIGN(Type);
}; // class Type
-class ArrayType : public Type {
- public:
- ArrayType(int kind, // from ValidatableType
- const std::string& package,
- const std::string& aidl_type,
- const std::vector<std::string>& header,
- const std::string& cpp_type,
- const std::string& read_method,
- const std::string& write_method,
- Type* array_type = nullptr,
- Type* nullable_type = nullptr,
- const std::string& src_file_name = "",
- int line = -1)
- : Type(kind, package, aidl_type, header, cpp_type, read_method,
- write_method, array_type, nullable_type, src_file_name, line) {}
-
- bool CanBeOutParameter() const override { return true; }
-
- virtual ~ArrayType() = default;
-};
-
class TypeNamespace : public ::android::aidl::LanguageTypeNamespace<Type> {
public:
TypeNamespace() = default;