Files
Upsilon/layout_reference.cpp
Léa Saviot b58ab0a8ca LayoutCursor
2018-06-26 15:11:04 +02:00

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;