blob: 60e52789a1e7a335e7d7eb3cffb5245c37e1936d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* File: config.hpp
* Purpose: Configuration header of the `tproc` library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
#ifndef __OCL_TPROC_CONFIG
#define __OCL_TPROC_CONFIG
#include <ocl/detail/config.hpp>
#include <ocl/is_same.hpp>
#include <ocl/option.hpp>
#include <ocl/smart_ptr.hpp>
namespace ocl {
template <typename CharT> class basic_rope;
}
#endif // ifndef __OCL_TPROC_CONFIG
|