blob: 330f9f6e3be6155afda8ff01bb90c64b7998c290 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* File: ocl.hpp
* Purpose: Open C++ Libraries.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
#ifndef __OCL_HPP
#define __OCL_HPP
// Mandatory core headers.
#include <ocl/allocator_op.hpp>
#include <ocl/crc_hash.hpp>
#include <ocl/option.hpp>
#include <ocl/equiv.hpp>
#include <ocl/print.hpp>
#include <ocl/smart_ptr.hpp>
#include <ocl/tracked_ptr.hpp>
#include <ocl/smart_socket.hpp>
#ifdef __OCL_FIX
# include <ocl/fix/parser.hpp>
# include <ocl/fix/checksum.hpp>
#endif
#endif // ifndef __OCL_HPP
|