13 lines
179 B
C++
13 lines
179 B
C++
|
|
#ifndef PARSE_INPUT_H
|
|
#define PARSE_INPUT_H
|
|
|
|
#include <vector>
|
|
|
|
#include "refptr/refptr.h"
|
|
#include "Parser.h"
|
|
|
|
bool parse_input(char * buff, int size, Parser & parser);
|
|
|
|
#endif
|