summaryrefslogtreecommitdiff
path: root/examples/APG/Streams/CommandTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Streams/CommandTask.h')
-rw-r--r--examples/APG/Streams/CommandTask.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/APG/Streams/CommandTask.h b/examples/APG/Streams/CommandTask.h
deleted file mode 100644
index ae78017b0f9..00000000000
--- a/examples/APG/Streams/CommandTask.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#ifndef COMMAND_TASK_H
-#define COMMAND_TASK_H
-
-#include "ace/Task.h"
-#include "ace/Module.h"
-
-#include "Command.h"
-
-// Listing 01 code/ch18
-class CommandTask : public ACE_Task<ACE_MT_SYNCH>
-{
-public:
- typedef ACE_Task<ACE_MT_SYNCH> inherited;
-
- virtual ~CommandTask () { }
-
- virtual int open (void * = 0 );
-
- int put (ACE_Message_Block *message,
- ACE_Time_Value *timeout);
-
- virtual int svc (void);
-
- virtual int close (u_long flags);
-
-protected:
- CommandTask (int command);
-
- virtual int process (Command *message);
-
- int command_;
-};
-// Listing 01
-
-
-#endif /* COMMAND_TASK_H */