mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
33 lines
845 B
C++
33 lines
845 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file Strategies.h
|
|
*
|
|
* $Id: Strategies.h 80826 2008-03-04 14:51:23Z wotte $
|
|
*
|
|
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef ACE_STRATEGIES_H
|
|
#define ACE_STRATEGIES_H
|
|
#include /**/ "ace/pre.h"
|
|
|
|
#include /**/ "ace/config-all.h"
|
|
|
|
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
|
# pragma once
|
|
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
|
|
|
/// Place holder for backward compatibility..
|
|
#include "ace/Connection_Recycling_Strategy.h"
|
|
#include "ace/Hashable.h"
|
|
#include "ace/Notification_Strategy.h"
|
|
#include "ace/Reactor_Notification_Strategy.h"
|
|
#include "ace/Recyclable.h"
|
|
#include "ace/Refcountable.h"
|
|
|
|
|
|
#include /**/ "ace/post.h"
|
|
#endif /*ACE_STRATEGIES_H*/
|