diff options
author | Pixel <Pixel> | 2001-11-15 14:52:43 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-15 14:52:43 +0000 |
commit | 3f720784d55707024fff675a5238fde0168d1a40 (patch) | |
tree | 84a5b9843ede69aaf76cd9b791686b2a3ea7c3d7 /include/Action.h | |
parent | 8694409f2a5531e9f3263e8a42248a3ca91ac14f (diff) |
More work into TaskMan...
Diffstat (limited to 'include/Action.h')
-rw-r--r-- | include/Action.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Action.h b/include/Action.h index 185cd1a..bf3dc1a 100644 --- a/include/Action.h +++ b/include/Action.h @@ -2,6 +2,7 @@ #define __ACTION_H__ #ifdef __cplusplus +#include <Task.h> #include <Handle.h> #include <Variables.h> #include <Exceptions.h> @@ -35,7 +36,7 @@ class Action : public Base { Action(const String & = ""); virtual ~Action(); Action * Look4URL(const String &); - virtual void Do(Variables *, Handle *) = 0; + virtual Task * Do(Variables *, Handle *) = 0; virtual void SendHead(Handle *); virtual void SendFoot(Handle *); virtual void ShowButton(Handle *, const String & = " Ok ", const String & = "start"); |