summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/Factory_Map.h
blob: 87df106279788f6ac6db61f247451e95e81f33a9 (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
// -*- C++ -*-
//
// $Id$

#ifndef FACTORY_MAP_H
#define FACTORY_MAP_H

#include /**/ "ace/pre.h"
#include "ace/config-all.h"

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

#include "Factory_Struct.h"
#include "ace/Hash_Map_Manager_T.h"

typedef ACE_Hash_Map_Manager_Ex<
  ACE_UINT32,
  Factory_Struct,
  ACE_Hash<ACE_UINT32>,
  ACE_Equal_To<ACE_UINT32>,
  ACE_Null_Mutex> Factory_Map;


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