MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore.hpp
Go to the documentation of this file.
1/*
2
3Copyright 2025 Matthew Tolman
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17*/
18
19#pragma once
20
21#ifndef MTCORE_HPP
22#define MTCORE_HPP
23
24// This is to make sure that library users don't have to have a specific include
25// order
26#ifdef MTCORE_THREAD_USE
27#include "mtcore_thread.hpp"
28#endif
29
30#include "mtcore/alloc.hpp"
31#include "mtcore/ascii.hpp"
33#include "mtcore/byte_order.hpp"
44#include "mtcore/core.hpp"
45#include "mtcore/csv/slice.hpp"
46#include "mtcore/csv/writer.hpp"
48#include "mtcore/io/floats.hpp"
49#include "mtcore/io/format.hpp"
50#include "mtcore/io/formats.hpp"
51#include "mtcore/io/reader.hpp"
52#include "mtcore/io/writer.hpp"
53#include "mtcore/ip.hpp"
54#include "mtcore/random.hpp"
55#include "mtcore/traits.hpp"
56#include "mtcore/rc.hpp"
57
58#endif