diff --git a/parse-input.cc b/parse-input.cc new file mode 100644 index 0000000..150bbb2 --- /dev/null +++ b/parse-input.cc @@ -0,0 +1,6 @@ + +#include + +void parse_input(refptr< vector > ucs) +{ +} diff --git a/parse-input.h b/parse-input.h new file mode 100644 index 0000000..227df57 --- /dev/null +++ b/parse-input.h @@ -0,0 +1,11 @@ + +#ifndef PARSE_INPUT_H +#define PARSE_INPUT_H + +#include +#include "refptr/refptr.h" +#include "unicode.h" + +void parse_input(refptr< std::vector > ucs); + +#endif