summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ciao/Active_Objref_Map.h
blob: 15a366f0969e19160ee89f9ae887c0f0ce6771cd (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
35
36
// $Id$

/**
 * @file Active_Objref_Map.h
 *
 * A CIAO implementation of object reference map which enables
 * fast insertion/deletion/indexing of object reference thru
 * map-generated keys.
 *
 * @sa ACE_Active_Map_Manager
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */

#ifndef CIAO_ACTIVE_OBJREF_MAP_H
#define CIAO_ACTIVE_OBJREF_MAP_H
#include /**/ "ace/pre.h"

#include "ace/Active_Map_manager_T.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ciao/CIAO_Container_Export.h"
#include "tao/Object.h"

namespace CIAO
{
  typedef ACE_Active_Map_Manager<CORBA::Object_var> Active_Objref_Map;

  CIAO_CONTAINER_SINGLETON_DECLARATION (ACE_Active_Map_Manager<CORBA::Object_var>);
}

#include /**/ "ace/post.h"
#endif /* CIAO_ACTIVE_OBJREF_MAP_H */