X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexecutable.h;h=a75e26eda45fd661631c1f63b5641ab377319957;hb=aa053d637e8259755af7d2e4b510a242f4d29c7b;hp=0dc4fc5223b0f671af15901397af594a63dc6679;hpb=66d1078c04849ec17a7343d0494d6ed087e04318;p=builder.git diff --git a/source/executable.h b/source/executable.h index 0dc4fc5..a75e26e 100644 --- a/source/executable.h +++ b/source/executable.h @@ -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 &); - virtual const char *get_type() const { return "Executable"; } + Executable(Builder &, const Msp::FS::Path &); + Executable(Builder &, const Component &, const std::vector &); + + const char *get_type() const override { return "Executable"; } }; #endif