-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes.hpp
48 lines (37 loc) · 1.38 KB
/
types.hpp
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
37
38
39
40
41
42
43
44
45
46
47
48
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2020 Dimitry Ishenko
// Contact: dimitry (dot) ishenko (at) (gee) mail (dot) com
//
// Distributed under the GNU GPL license. See the LICENSE.md file for details.
////////////////////////////////////////////////////////////////////////////////
#ifndef OSC_TYPES_HPP
#define OSC_TYPES_HPP
////////////////////////////////////////////////////////////////////////////////
#include <chrono>
#include <cstddef>
#include <string>
#include <vector>
////////////////////////////////////////////////////////////////////////////////
namespace osc
{
using clock = std::chrono::system_clock;
////////////////////////////////////////////////////////////////////////////////
using int32 = std::int32_t;
using string = std::string;
using blob = std::vector<char>;
using int64 = std::int64_t;
using time = clock::time_point;
using null = std::nullptr_t;
struct inf_t { constexpr explicit inf_t() = default; };
////////////////////////////////////////////////////////////////////////////////
namespace literals
{
constexpr auto immed = time::min();
constexpr auto nil = nullptr;
constexpr inf_t inf { };
}
using namespace literals;
////////////////////////////////////////////////////////////////////////////////
}
////////////////////////////////////////////////////////////////////////////////
#endif