mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 15:50:49 +01:00
11 lines
271 B
C++
11 lines
271 B
C++
#include "layout_reference.h"
|
|
#include "layout_cursor.h"
|
|
#include "char_layout_node.h"
|
|
|
|
template <typename T>
|
|
LayoutCursor LayoutReference<T>::cursor() const {
|
|
return LayoutCursor(this->node());
|
|
}
|
|
|
|
template LayoutCursor LayoutReference<CharLayoutNode>::cursor() const;
|