mirror of https://github.com/axmolengine/axmol.git
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
|
//////////////////////////////////////////////////////////////////////////////////////////
|
||
|
// A multi-platform support c++11 library with focus on asynchronous socket I/O for any
|
||
|
// client application.
|
||
|
//////////////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
//
|
||
|
// Copyright (c) 2012-2023 HALX99 (halx99 at live dot com)
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "yasio/config.hpp"
|
||
|
|
||
|
#if YASIO__HAS_KQUEUE && defined(YASIO_ENABLE_HPERF_IO)
|
||
|
# include "yasio/impl/kqueue_io_watcher.hpp"
|
||
|
#elif YASIO__HAS_EPOLL && defined(YASIO_ENABLE_HPERF_IO)
|
||
|
# include "yasio/impl/epoll_io_watcher.hpp"
|
||
|
#elif YASIO__HAS_EVPORT && defined(YASIO_ENABLE_HPERF_IO)
|
||
|
# include "yasio/impl/evport_io_watcher.hpp"
|
||
|
#elif !defined(YASIO_DISABLE_POLL)
|
||
|
# include "yasio/impl/poll_io_watcher.hpp"
|
||
|
#else
|
||
|
# include "yasio/impl/select_io_watcher.hpp"
|
||
|
#endif
|
||
|
|
||
|
namespace yasio
|
||
|
{
|
||
|
YASIO__NS_INLINE
|
||
|
namespace inet
|
||
|
{
|
||
|
#if defined(YASIO__KQUEUE_IO_WATCHER_HPP)
|
||
|
using io_watcher = kqueue_io_watcher;
|
||
|
#elif defined(YASIO__EPOLL_IO_WATCHER_HPP)
|
||
|
using io_watcher = epoll_io_watcher;
|
||
|
#elif defined(YASIO__EVPORT_IO_WATCHER_HPP)
|
||
|
using io_watcher = evport_io_watcher;
|
||
|
#elif !defined(YASIO_DISABLE_POLL)
|
||
|
using io_watcher = poll_io_watcher;
|
||
|
#else
|
||
|
using io_watcher = select_io_watcher;
|
||
|
#endif
|
||
|
} // namespace inet
|
||
|
} // namespace yasio
|