diff options
Diffstat (limited to 'include/ocl/core/includes.hpp')
| -rw-r--r-- | include/ocl/core/includes.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/ocl/core/includes.hpp b/include/ocl/core/includes.hpp new file mode 100644 index 0000000..9ed8ffb --- /dev/null +++ b/include/ocl/core/includes.hpp @@ -0,0 +1,23 @@ +/* + * File: core/includes.hpp + * Purpose: Core includes of the OCL. + * Author: Amlal El Mahrouss (amlal@nekernel.org) + * Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License. + */ + +#pragma once + +#include <boost/config.hpp> +#include <boost/core/nvp.hpp> +#include <boost/core/demangle.hpp> +#include <boost/core/null_deleter.hpp> +#include <boost/container/allocator.hpp> + +namespace ocl +{ +#ifdef OCL_USE_UTF8 + using char_type = char8_t; +#else + using char_type = char; +#endif +} // namespace ocl
\ No newline at end of file |
