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