initial parse-input.* files

This commit is contained in:
Josh Holtrop 2010-04-01 17:20:58 -04:00
parent 68b36d0310
commit 403b8028b5
2 changed files with 17 additions and 0 deletions

6
parse-input.cc Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
void parse_input(refptr< vector<unichar_t> > ucs)
{
}

11
parse-input.h Normal file
View File

@ -0,0 +1,11 @@
#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