Maipa's Standard Library Extension 1.5.6
mstd
Loading...
Searching...
No Matches
utils.hpp
1/*
2 * mstd - Maipa's Standard Library
3 *
4 * Licensed under the BSD 3-Clause License with Attribution Requirement.
5 * See the LICENSE file for details: https://github.com/MAIPA01/mstd/blob/main/LICENSE
6 *
7 * Copyright (c) 2025, Patryk Antosik (MAIPA01)
8 */
9#pragma once
10#ifndef _MSTD_UTILS_HPP_
11 #define _MSTD_UTILS_HPP_
12
13 #include <mstd/config.hpp>
14
16_MSTD_WARNING("this is only available for c++17 and greater!");
17 #else
18
19 #include <mstd/arithmetic_utils.hpp>
20 #include <mstd/containers_utils.hpp>
21 #include <mstd/events_utils.hpp>
22 #include <mstd/functions_utils.hpp>
23 #include <mstd/libs.hpp>
24 #include <mstd/management_utils.hpp>
25 #include <mstd/string_utils.hpp>
26 #include <mstd/terminal_utils.hpp>
27
28 #endif
29#endif
#define _MSTD_HAS_CXX17
Definition config.hpp:45