mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
115 lines
2.2 KiB
C++
115 lines
2.2 KiB
C++
#include "ace/Asynch_IO_Impl.h"
|
|
|
|
#if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS)
|
|
// This only works on Win32 platforms and on Unix platforms supporting
|
|
// aio calls.
|
|
|
|
#if !defined (__ACE_INLINE__)
|
|
#include "ace/Asynch_IO_Impl.inl"
|
|
#endif /* __ACE_INLINE__ */
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
ACE_Asynch_Result_Impl::~ACE_Asynch_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Operation_Impl::~ACE_Asynch_Operation_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_Stream_Impl::~ACE_Asynch_Read_Stream_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_Stream_Result_Impl::~ACE_Asynch_Read_Stream_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_Stream_Impl::~ACE_Asynch_Write_Stream_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_Stream_Result_Impl::~ACE_Asynch_Write_Stream_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_File_Impl::~ACE_Asynch_Read_File_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_File_Impl::~ACE_Asynch_Write_File_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_File_Result_Impl::~ACE_Asynch_Read_File_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_File_Result_Impl::~ACE_Asynch_Write_File_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Accept_Result_Impl::~ACE_Asynch_Accept_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Connect_Result_Impl::~ACE_Asynch_Connect_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Accept_Impl::~ACE_Asynch_Accept_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Connect_Impl::~ACE_Asynch_Connect_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Transmit_File_Impl::~ACE_Asynch_Transmit_File_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Transmit_File_Result_Impl::~ACE_Asynch_Transmit_File_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_Dgram_Impl::~ACE_Asynch_Read_Dgram_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_Dgram_Impl::ACE_Asynch_Read_Dgram_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_Dgram_Impl::~ACE_Asynch_Write_Dgram_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_Dgram_Impl::ACE_Asynch_Write_Dgram_Impl (void)
|
|
{
|
|
}
|
|
|
|
//***********************************************
|
|
|
|
ACE_Asynch_Read_Dgram_Result_Impl::~ACE_Asynch_Read_Dgram_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Read_Dgram_Result_Impl::ACE_Asynch_Read_Dgram_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
//***********************************************
|
|
|
|
ACE_Asynch_Write_Dgram_Result_Impl::~ACE_Asynch_Write_Dgram_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_Asynch_Write_Dgram_Result_Impl::ACE_Asynch_Write_Dgram_Result_Impl (void)
|
|
{
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|
|
|
|
#endif /* ACE_HAS_WIN32_OVERLAPPED_IO || ACE_HAS_AIO_CALLS */
|