]> git.tdb.fi Git - builder.git/blobdiff - source/install.h
Add Id tag to all files
[builder.git] / source / install.h
index 503205a021f0a4223e9bb537078193d130d05444..bdabc6e7c3853afd87d5425ba42f10bf14db25a4 100644 (file)
@@ -1,16 +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 "target.h"
 
+/**
+Represents the installation of a file.
+*/
 class Install: public Target
 {
 public:
-       Install(Builder &, const Package &, Target &, const std::string &);
+       Install(Builder &, const Package &, Target &);
        const char *get_type() const { return "Install"; }
        void       check_rebuild();
        Action     *build();
 private:
+       std::string generate_target_name(const Target &);
 };
 
 #endif