mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 00:00:44 +01:00
17 lines
302 B
C++
17 lines
302 B
C++
#ifndef CURSOR_H
|
|
#define CURSOR_H
|
|
|
|
#include "char_layout_node.h"
|
|
#include "tree_node.h"
|
|
#include "tree_reference.h"
|
|
|
|
class Cursor {
|
|
template <typename T>
|
|
friend class TreeReference;
|
|
private:
|
|
Cursor(TreeNode * node) : m_treeReference(node) {}
|
|
TreeReference<TreeNode> m_treeReference;
|
|
};
|
|
|
|
#endif
|