blob: 522dd1f3ce5ea99ebe9aeeb9604e45cc0984bdb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <cstdint>
using i64 = int64_t;
using u64 = uint64_t;
#define TYPESUBCLASS(parenttype,newtype) \
class newtype : public parenttype{ \
public: \
using parenttype::parenttype; \
using parenttype::operator=; \
}
#define TYPESUBCLASSTEMPLATE(parenttype,parenttemplate,newtype) \
class newtype : public parenttype parenttemplate{ \
public: \
using parenttype parenttemplate::parenttype; \
using parenttype parenttemplate::operator=; \
}
|