diff options
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/global.h b/global.h new file mode 100644 index 0000000..522dd1f --- /dev/null +++ b/global.h @@ -0,0 +1,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=; \ + } |