diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-31 21:31:06 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-31 21:31:06 +0000 |
commit | ce5f1ba9ba49aa903d21cb60dc7a1e9e82a2b611 (patch) | |
tree | f147b61f6b46c84e1880805eb4c556f0451eda55 /ace/Hash_Map_Manager.h | |
parent | 1f8de9d26bb915c6043713a0019703086cb4edf1 (diff) | |
download | ATCD-ce5f1ba9ba49aa903d21cb60dc7a1e9e82a2b611.tar.gz |
protected .cpp file against multiple includes, moved #include of "ace/Malloc.h" from .h to .cpp file
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r-- | ace/Hash_Map_Manager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h index 138db0401d0..a37051368d6 100644 --- a/ace/Hash_Map_Manager.h +++ b/ace/Hash_Map_Manager.h @@ -17,8 +17,9 @@ #if !defined (ACE_HASH_MAP_MANAGER_H) #define ACE_HASH_MAP_MANAGER_H -#include "ace/SString.h" -#include "ace/Malloc.h" +#include "ace/OS.h" + +class ACE_Allocator; template <class EXT_ID, class INT_ID> class ACE_Hash_Map_Entry |