diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-19 09:00:30 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-19 09:00:30 +0100 |
| commit | 33cbf6971da84801c489ce5ca19ba18867c0b7e1 (patch) | |
| tree | 92ce38552422aac23e6046344af490bdab8d52f7 /include | |
| parent | bd28cc476c2fc76978630e756e27c4bcd58f8e9c (diff) | |
chore: implement config.hpp, add MailMap, compile_flags, and format files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/ocl/tproc/detail/config.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/ocl/tproc/detail/config.hpp b/include/ocl/tproc/detail/config.hpp index e69de29..60e5278 100644 --- a/include/ocl/tproc/detail/config.hpp +++ b/include/ocl/tproc/detail/config.hpp @@ -0,0 +1,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 |
