X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fandroidapplicationcomponent.h;h=9e19b6d8ab5aa1d8daa6111bbd0c4575cb328a29;hb=40ab4f61eaf7fc14fc6d1c2ea5eecee21882893a;hp=af465e50cabc2ece4f9ad4f43ceeaa37abfddcb8;hpb=e3ba0e44173bd373d1111fc6d87fc4e61faebf9f;p=builder.git diff --git a/source/androidapplicationcomponent.h b/source/androidapplicationcomponent.h index af465e5..9e19b6d 100644 --- a/source/androidapplicationcomponent.h +++ b/source/androidapplicationcomponent.h @@ -1,7 +1,6 @@ #ifndef ANDROIDAPPLICATIONCOMPONENT_H_ #define ANDROIDAPPLICATIONCOMPONENT_H_ -#include #include "component.h" class AndroidApplicationComponent: public Component @@ -18,12 +17,12 @@ public: private: std::string orientation; - std::set permissions; + std::vector permissions; public: - AndroidApplicationComponent(SourcePackage &, const std::string &); + AndroidApplicationComponent(SourcePackage &p, const std::string &n): Component(p, n) { } - virtual void create_targets() const; + void create_targets() const override; }; #endif