summaryrefslogtreecommitdiff
path: root/Kokyu/Kokyu.i
blob: 415d19a1534bb8d70f8596f1fec5ab045873d47d (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
// $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)
{
   delete this;
}

ACE_INLINE
Dispatch_Command::~Dispatch_Command (void)
{
}


}