]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
Reorder class members
[builder.git] / source / executable.h
index e415668e9890de8ab6106fa72d8e8f6850ace991..a6ebb978175c46029ae804728418d3a423fc1efc 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Copyright © 2006-200 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -19,16 +19,19 @@ library.
 */
 class Executable: public Target
 {
+private:
+       const Component ∁
+
 public:
        Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
-       const char      *get_type() const      { return "Executable"; }
+       virtual const char *get_type() const { return "Executable"; }
        const Component &get_component() const { return comp; }
-       void            find_depends();
+       virtual void find_depends();
 private:
-       const Component &comp;
-
-       virtual Action  *create_action();
+       virtual Action *create_action();
 
+       /** Returns the name for the executable.  We can't do this in the
+       constructor since we need to pass the value to the Target c'tor. */
        static std::string generate_target_name(const Component &);
 };