Files
pip/main.cpp

19 lines
364 B
C++

#include "pip.h"
#include "picodeparser.h"
#include "pivector2d.h"
int main(int argc, char *argv[]) {
PICodeParser cp;
cp.parseFile("cp.h");
/*PIString s = PIString::fromUTF8("hello, привет");
piCout << s;
PIByteArray ba = s.toUTF8();
piCout << ba.toHex();
PIString s2;
s2 = PIString::fromUTF8(ba);
piCout << s2;*/
return 0;
}