]> git.tdb.fi Git - builder.git/blobdiff - source/file.h
A bunch of minor cleanups
[builder.git] / source / file.h
index bc71df87a25d02ff30542b08ab329f67303cc3d0..5a216a9655b6aa65f4661db814e1c9ab381c705e 100644 (file)
@@ -1,22 +1,18 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2007-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef FILE_H_
 #define FILE_H_
 
-#include "target.h"
+#include "filetarget.h"
 
-class File: public Target
+/**
+Just an arbitrary file.  No special meaning attached.
+*/
+class File: public FileTarget
 {
 public:
-       File(Builder &, const std::string &);
+       File(Builder &b, const Msp::FS::Path &t): FileTarget(b, t) { }
+       File(Builder &b, const SourcePackage &p, const Msp::FS::Path &t): FileTarget(b, p, t) { }
+
        virtual const char *get_type() const { return "File"; }
-private:
-       virtual Action *create_action() { return 0; }
 };
 
 #endif