mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
31 lines
721 B
C++
31 lines
721 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file Hash_Map_Manager.h
|
|
*
|
|
* $Id: Hash_Map_Manager.h 80826 2008-03-04 14:51:23Z wotte $
|
|
*
|
|
* Backward compatibility header.
|
|
*
|
|
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef ACE_HASH_MAP_MANAGER_H
|
|
#define ACE_HASH_MAP_MANAGER_H
|
|
|
|
#include /**/ "ace/pre.h"
|
|
|
|
#include /**/ "ace/config-all.h"
|
|
|
|
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
|
# pragma once
|
|
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
|
|
|
// Include the templates here.
|
|
#include "ace/Hash_Map_Manager_T.h"
|
|
|
|
#include /**/ "ace/post.h"
|
|
|
|
#endif /* ACE_HASH_MAP_MANAGER_H */
|