CGBASupport (#13)

* Start work on GBASupport

* Match update

* Almost perfect match

* Very close to 100% match

* Match & link CGBASupport

* Fix some naming

* use c-cstle cast and round-up

Former-commit-id: d8804b5244
This commit is contained in:
Pwootage
2022-10-16 14:20:36 -06:00
committed by GitHub
parent 8db24c473a
commit 0fbdb1f381
10 changed files with 330 additions and 38 deletions

View File

@@ -35,6 +35,7 @@ public:
}
T* operator->() const { return GetPtr(); }
T& operator*() const { return *GetPtr(); }
operator bool() const { return GetPtr() != nullptr; }
private:
CRefData* x0_refData;