X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=plugins%2Fandroid%2Fandroidpackagefile.h;fp=plugins%2Fandroid%2Fandroidpackagefile.h;h=91b6b367d36f6e0b225d6d42499f06a4777a06df;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/plugins/android/androidpackagefile.h b/plugins/android/androidpackagefile.h new file mode 100644 index 0000000..91b6b36 --- /dev/null +++ b/plugins/android/androidpackagefile.h @@ -0,0 +1,16 @@ +#ifndef ANDROIDPACKAGEFILE_H_ +#define ANDROIDPACKAGEFILE_H_ + +#include + +class AndroidResourceBundle; + +class AndroidPackageFile: public FileTarget +{ +public: + AndroidPackageFile(Builder &, const Component &, AndroidResourceBundle &, const std::vector &); + + const char *get_type() const override { return "AndroidPackageFile"; } +}; + +#endif