]> git.tdb.fi Git - builder.git/blobdiff - source/install.h
Some additions to Readme.txt
[builder.git] / source / install.h
index bdabc6e7c3853afd87d5425ba42f10bf14db25a4..84c2b23ef49cb9189c75fd469ba48cc8a1dcac0d 100644 (file)
@@ -8,6 +8,7 @@ Distributed under the LGPL
 #ifndef INSTALL_H_
 #define INSTALL_H_
 
+#include "sourcepackage.h"
 #include "target.h"
 
 /**
@@ -16,12 +17,13 @@ Represents the installation of a file.
 class Install: public Target
 {
 public:
-       Install(Builder &, const Package &, Target &);
+       Install(Builder &, const SourcePackage &, Target &);
        const char *get_type() const { return "Install"; }
        void       check_rebuild();
-       Action     *build();
 private:
-       std::string generate_target_name(const Target &);
+       virtual Action *create_action();
+
+       static std::string generate_target_name(const Target &);
 };
 
 #endif