summaryrefslogtreecommitdiff
path: root/Kokyu/Kokyu.i
blob: 583e64c237f4f65d38a0a3b91d73b85ba564629d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// $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)
{
}


}