J2DWindow::draw_private

This commit is contained in:
LagoLunatic
2024-01-07 01:54:47 -05:00
parent 2f21a354b5
commit 6ec8c70295
4 changed files with 43 additions and 16 deletions
+3 -3
View File
@@ -195,11 +195,11 @@ public:
return *this;
}
T* getObject() { return this->mTree->getObject(); }
T* getObject() const { return this->mTree->getObject(); }
bool operator==(JSUTree<T>* other) { return this->mTree == other; }
bool operator!=(JSUTree<T>* other) { return this->mTree != other; }
bool operator!=(const JSUTree<T>* other) const { return this->mTree != other; }
JSUTreeIterator<T> operator++(int) {
JSUTreeIterator<T> prev = *this;
@@ -214,7 +214,7 @@ public:
T* operator*() { return this->getObject(); }
T* operator->() { return this->getObject(); }
T* operator->() const { return this->getObject(); }
private:
JSUTree<T>* mTree;