]> git.tdb.fi Git - builder.git/blobdiff - source/install.h
Replace per-file copyright notices with a single file
[builder.git] / source / install.h
index 672161580c8ee3b2bc67b5ac5d7d8396c3d62f2b..d20a32273ee49b37e311c764364a8936069fcbd2 100644 (file)
@@ -1,28 +1,27 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef INSTALL_H_
 #define INSTALL_H_
 
 #include "sourcepackage.h"
-#include "target.h"
+#include "filetarget.h"
 
 /**
 Represents the installation of a file.
 */
-class Install: public Target
+class Install: public FileTarget
 {
+private:
+       FileTarget &source;
+
 public:
-       Install(Builder &, const SourcePackage &, Target &);
-       const char *get_type() const { return "Install"; }
-       void       check_rebuild();
-       Action     *build();
+       Install(Builder &, const SourcePackage &, FileTarget &, const std::string & =std::string());
+       virtual const char *get_type() const { return "Install"; }
+       FileTarget &get_source() const { return source; }
+       virtual Target *get_real_target();
 private:
-       std::string generate_target_name(const Target &);
+       virtual void check_rebuild();
+       virtual Action *create_action();
+
+       static Msp::FS::Path generate_target_path(const FileTarget &i, const std::string &);
 };
 
 #endif