#pragma once #include 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=; \ }