12 lines
177 B
C++
12 lines
177 B
C++
|
|
#ifndef PARSE_INPUT_H
|
|
#define PARSE_INPUT_H
|
|
|
|
#include <vector>
|
|
#include "refptr/refptr.h"
|
|
#include "unicode.h"
|
|
|
|
void parse_input(refptr< std::vector<unichar_t> > ucs);
|
|
|
|
#endif
|