diff options
Diffstat (limited to 'include/ocl.hpp')
| -rw-r--r-- | include/ocl.hpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/include/ocl.hpp b/include/ocl.hpp index 6019e1e..a662435 100644 --- a/include/ocl.hpp +++ b/include/ocl.hpp @@ -1,13 +1,14 @@ -/* - * 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. - */ +// Copyright 2023-2025, 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-org/ocl #ifndef __OCL_HPP #define __OCL_HPP +// Version header +#include <ocl/version.hpp> + // Mandatory core headers. #include <ocl/allocator_op.hpp> #include <ocl/crc_hash.hpp> @@ -18,8 +19,13 @@ #ifdef __OCL_FIX -# include <ocl/fix/parser.hpp> -# include <ocl/fix/checksum.hpp> +# include <ocl/fix.hpp> + +#endif + +#ifdef __OCL_TPROC + +# include <ocl/tproc.hpp> #endif |
