]> git.tdb.fi Git - builder.git/blobdiff - source/datafile.h
Header fixes
[builder.git] / source / datafile.h
index d76671c2eab7f8afae5f18e4ccd3fe78e9de1d5a..0ba501ca50ec2f70f12d9bae0b510d9bf52af441 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef DATAFILE_H_
 #define DATAFILE_H_
 
@@ -21,14 +14,13 @@ private:
 
 public:
        DataFile(Builder &, const Component &, File &);
+private:
+       static Msp::FS::Path generate_target_path(const Component &);
 
+public:
        virtual const char *get_type() const { return "DataFile"; }
        const Component &get_component() const { return component; }
        File &get_source() const { return source; }
-
-private:
-       virtual Action *create_action();
-       static Msp::FS::Path generate_target_path(const Component &);
 };
 
 #endif