summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Event.cpp
blob: 2ae1254ae807420d350d9d4d9947c7c91d45effb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

#include "Event.h"
#include "tao/debug.h"

#if ! defined (__ACE_INLINE__)
#include "Event.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(RT_Notify, TAO_NS_Event, "$Id$")

TAO_NS_Event::TAO_NS_Event (void)
{
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,"event:%x  created\n", this ));
}

TAO_NS_Event::~TAO_NS_Event ()
{
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,"event:%x  destroyed\n", this ));
}