17 lines
267 B
C++
17 lines
267 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);
|
|
|
|
/**
|
|
* Returns the Type associated with a type name
|
|
*/
|
|
Type string_to_type(string type_name);
|
|
|
|
#endif |