summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-28 14:59:50 +0000
committerPixel <Pixel>2001-11-28 14:59:50 +0000
commit0ddaa5127bf155ffb93f9da13381ad176b43a295 (patch)
tree8ce67d05aedf5d2e2fcb405e4c4b04facc3d5bad /include
parent5212a0752902e64bbd0e24b5c84edb0350e2d3f8 (diff)
Hopla
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am2
-rw-r--r--include/TaskMan.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 35f88b5..c748342 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -2,4 +2,4 @@
pkginclude_HEADERS = \
Exceptions.h Handle.h String.h Output.h Socket.h HttpServ.h Variables.h Menu.h \
Action.h Message.h Form.h Confirm.h Table.h IRC.h Task.h Buffer.h General.h \
-CopyJob.h ReadJob.h Regex.h TaskMan.h InPipe.h OutPipe.h
+CopyJob.h ReadJob.h Regex.h TaskMan.h InPipe.h OutPipe.h Input.h
diff --git a/include/TaskMan.h b/include/TaskMan.h
index 650a521..fd031ee 100644
--- a/include/TaskMan.h
+++ b/include/TaskMan.h
@@ -19,9 +19,10 @@ class TaskMan : public Base {
class w4ha_t {
public:
- w4ha_t(Handle * aha, int aflags, Task * aT) : ha(aha), flags(aflags), T(aT) { }
+ w4ha_t(Handle * aha, int aflags, Task * aT) : ha(aha), flags(aflags), dirthy(true), T(aT) { }
Handle * ha;
int flags;
+ bool dirthy;
Task * T;
};