]> git.tdb.fi Git - builder.git/blob - source/externalaction.h
52eed37e5da12857725d19b128b2f2869dc5cb27
[builder.git] / source / externalaction.h
1 #ifndef EXTERNALACTION_H_
2 #define EXTERNALACTION_H_
3
4 #include <list>
5 #include <string>
6 #include "action.h"
7
8 class ExternalAction: public Action
9 {
10 public:
11         int check();
12 protected:
13         std::list<std::string> argv;
14         int pid;
15         
16         ExternalAction(Builder &b): Action(b) { }
17         void launch();
18 };
19
20 #endif