]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
Convert all list containers to vectors
[builder.git] / source / executable.h
index 0dc4fc5223b0f671af15901397af594a63dc6679..a75e26eda45fd661631c1f63b5641ab377319957 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef EXECUTABLE_H_
 #define EXECUTABLE_H_
 
@@ -13,8 +6,10 @@ Distributed under the LGPL
 class Executable: public Binary
 {
 public:
-       Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
-       virtual const char *get_type() const { return "Executable"; }
+       Executable(Builder &, const Msp::FS::Path &);
+       Executable(Builder &, const Component &, const std::vector<ObjectFile *> &);
+
+       const char *get_type() const override { return "Executable"; }
 };
 
 #endif