summaryrefslogtreecommitdiff
path: root/Kokyu/Kokyu.i
diff options
context:
space:
mode:
Diffstat (limited to 'Kokyu/Kokyu.i')
-rw-r--r--Kokyu/Kokyu.i33
1 files changed, 0 insertions, 33 deletions
diff --git a/Kokyu/Kokyu.i b/Kokyu/Kokyu.i
deleted file mode 100644
index 583e64c237f..00000000000
--- a/Kokyu/Kokyu.i
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-
-
-namespace Kokyu
-{
-
-ACE_INLINE
-Dispatch_Command::Dispatch_Command (int dont_delete)
- :dont_delete_ (dont_delete)
-{
-}
-
-ACE_INLINE
-int Dispatch_Command::can_be_deleted (void) const
-{
- return !dont_delete_;
-}
-
-ACE_INLINE
-void Dispatch_Command::destroy (void)
-{
- //@@what if it was allocated thru an allocator?
- //may be this should be left as a pure virtual
- delete this;
-}
-
-ACE_INLINE
-Dispatch_Command::~Dispatch_Command (void)
-{
-}
-
-
-}