summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciaosvcs/Events/CIAO_Events_Base/CIAO_EventServiceBase.cpp
blob: 98a9eb38a2b081d1b6e3bf07a16b185fdef728c1 (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
34
//=============================================================================
/**
 *  @file CIAO_EventServiceBase.cpp
 *
 *  $Id$
 *
 *  @author Gan Deng <dengg@dre.vanderbilt.edu>
 */
//=============================================================================

#include "CIAO_EventServiceBase.h"

namespace CIAO
{
  EventServiceBase::
  EventServiceBase (void)
  {
  }

  EventServiceBase::~EventServiceBase (void)
  {
  }

   void
     EventServiceBase::ciao_push_event (
      ::Components::EventBase * evt,
      const char * source_id,
      ::CORBA::TypeCode_ptr tc)
   {
      ACE_UNUSED_ARG (evt);
      ACE_UNUSED_ARG (source_id);
      ACE_UNUSED_ARG (tc);
   }
}