]> git.tdb.fi Git - builder.git/blobdiff - source/androidpackagefile.h
A bunch of new tools and targets to build Android packages
[builder.git] / source / androidpackagefile.h
diff --git a/source/androidpackagefile.h b/source/androidpackagefile.h
new file mode 100644 (file)
index 0000000..4f1c692
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef ANDROIDPACKAGEFILE_H_
+#define ANDROIDPACKAGEFILE_H_
+
+#include "filetarget.h"
+
+class AndroidResourceBundle;
+
+class AndroidPackageFile: public FileTarget
+{
+public:
+       AndroidPackageFile(Builder &, const Component &, AndroidResourceBundle &, const std::list<FileTarget *> &);
+
+       virtual const char *get_type() const { return "AndroidPackageFile"; }
+};
+
+#endif