LayoutCursor

This commit is contained in:
Léa Saviot
2018-06-26 15:11:04 +02:00
parent f8d08f8599
commit b58ab0a8ca
8 changed files with 49 additions and 27 deletions

10
layout_reference.cpp Normal file
View File

@@ -0,0 +1,10 @@
#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;