summaryrefslogtreecommitdiffhomepage
path: root/include/ocl/asio.hpp
blob: 818b5c68f4273dd6f6b75b9c2f1398dd79512139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-foss-org/core

#ifndef OCL_CORE_ASIO
#define OCL_CORE_ASIO

#include <boost/asio/co_spawn.hpp>
#include <boost/asio/detached.hpp>
#include <boost/asio/io_context.hpp>
#include <boost/asio/write.hpp>
#include <boost/asio/read.hpp>

#ifdef OCL_CORE_INCLUDE_ALL_ASIO
#include <boost/asio.hpp>
#endif

#endif