12 lines
172 B
C
12 lines
172 B
C
|
#ifndef DEF_UTILS_H
|
||
|
#define DEF_UTILS_H
|
||
|
|
||
|
#include "types.h"
|
||
|
using namespace std;
|
||
|
|
||
|
/**
|
||
|
* Returns the CodePosition of a node
|
||
|
*/
|
||
|
CodePosition get_node_pos(Node node);
|
||
|
|
||
|
#endif
|