]> git.tdb.fi Git - builder.git/blobdiff - source/apkbuilder.h
Inline simple constructors
[builder.git] / source / apkbuilder.h
index 7b73aa7620601be5d169035011c91bf55e319237..4a8c16b5e925238c3cb8faa66796f8e5b63f93de 100644 (file)
@@ -6,16 +6,16 @@
 class ApkBuilder: public Tool
 {
 private:
-       Tool *jarsigner;
+       Tool *jarsigner = 0;
 
 public:
        ApkBuilder(Builder &);
 
-       virtual Target *create_target(const std::list<Target *> &, const std::string &);
+       Target *create_target(const std::vector<Target *> &, const std::string &) override;
 protected:
-       virtual void do_prepare();
+       void do_prepare() override;
 public:
-       virtual Task *run(const Target &) const;
+       Task *run(const Target &) const override;
 };
 
 #endif