X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexternalaction.h;h=232e0847c1770dd0c3dec2d586758e7cc080c6b7;hb=4c11e2a041d2064f44b7eb3dbf1976c35fc8881c;hp=86f32753e61f3b323f7a2012a3bd85a3438f8e4a;hpb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;p=builder.git diff --git a/source/externalaction.h b/source/externalaction.h index 86f3275..232e084 100644 --- a/source/externalaction.h +++ b/source/externalaction.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef EXTERNALACTION_H_ #define EXTERNALACTION_H_ @@ -6,12 +13,16 @@ #include "action.h" #include "misc.h" +/** +Base class for Actions that want to execute an external program. +*/ class ExternalAction: public Action { public: int check(); protected: StringList argv; + Msp::Path work_dir; int pid; int exit_code;