-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTritonCore.h
More file actions
36 lines (28 loc) · 817 Bytes
/
Copy pathTritonCore.h
File metadata and controls
36 lines (28 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
_____ _ _ ___
|_ _| _(_) |_ ___ _ _ / __|___ _ _ ___
| || '_| | _/ _ \ ' \ (__/ _ \ '_/ -_)
|_||_| |_|\__\___/_||_\___\___/_| \___|
Copyright © 2023 - 2024, Michel Gerritse
All rights reserved.
This source code is available under the BSD-3-Clause license.
See LICENSE.txt in the root directory of this source tree.
*/
#ifndef _TRITON_CORE_H_
#define _TRITON_CORE_H_
#include <algorithm>
#include <array>
#include <cassert>
#include <climits>
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#include "Core/Bit.h"
#include "Core/Types.h"
#include "Core/Version.h"
/// <summary>Current TritonCore API</summary>
namespace TritonCore = TritonCore_v1;
/// <summary>Shortened TritonCore namespace alias</summary>
namespace TC = TritonCore;
#endif // !_TRITON_CORE_H_