mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
32 lines
616 B
C++
32 lines
616 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file Map.h
|
|
*
|
|
* $Id: Map.h 80826 2008-03-04 14:51:23Z wotte $
|
|
*
|
|
* Backward compatibility header.
|
|
*
|
|
* @author Irfan Pyarali
|
|
*/
|
|
//=============================================================================
|
|
|
|
|
|
#ifndef ACE_MAP_H
|
|
#define ACE_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 the templates here.
|
|
#include "ace/Map_T.h"
|
|
|
|
#include /**/ "ace/post.h"
|
|
|
|
#endif /* ACE_MAP_H */
|