Removed trailling white spaces
[ozulis.git] / src / ast / clone.hh
blobad59cb4823200c5a9ef714357cd81ef2787a1ab0
1 #ifndef AST_CLONE_HH
2 # define AST_CLONE_HH
4 namespace ast
6 class Node;
8 Node * clone(const Node * node);
10 template <typename T>
11 inline T * clone(const T * node);
14 # include "clone.hxx"
16 #endif /* !AST_CLONE_HH */