summaryrefslogtreecommitdiff
path: root/tools/aidl/generate_java.h
diff options
context:
space:
mode:
authorChristopher Wiley <wiley@google.com>2015-09-11 14:24:24 -0700
committerChristopher Wiley <wiley@google.com>2015-09-11 14:41:36 -0700
commit73ea1230fc2a4007973efe3730d482d7bc6cf87a (patch)
tree5ec15e3777ca3adfb8c85ddbb47d63afd10717c6 /tools/aidl/generate_java.h
parentb15e1ff5081b680f4848a07fdbe6009c9a0fbde0 (diff)
Remove the aidl tool
This has been moved into its own repository at //system/tools/aidl Test: Built aosp_arm-eng from scratch. Bug: 23691099 Change-Id: Ic45d55682b9dcafe894efe0a6317792f9c1236c6
Diffstat (limited to 'tools/aidl/generate_java.h')
-rw-r--r--tools/aidl/generate_java.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/aidl/generate_java.h b/tools/aidl/generate_java.h
deleted file mode 100644
index c66592282942..000000000000
--- a/tools/aidl/generate_java.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef AIDL_GENERATE_JAVA_H_
-#define AIDL_GENERATE_JAVA_H_
-
-#include "aidl_language.h"
-#include "AST.h"
-
-#include <string>
-
-using std::string;
-using std::vector;
-
-int generate_java(const string& filename, const string& originalSrc,
- interface_type* iface);
-
-Class* generate_binder_interface_class(const interface_type* iface);
-
-string gather_comments(extra_text_type* extra);
-string append(const char* a, const char* b);
-
-class VariableFactory
-{
-public:
- VariableFactory(const string& base); // base must be short
- Variable* Get(Type* type);
- Variable* Get(int index);
-private:
- vector<Variable*> m_vars;
- string m_base;
- int m_index;
-};
-
-#endif // AIDL_GENERATE_JAVA_H_
-