git-svn-id: svn://db.shs.com.ru/pip@526 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-07-15 17:52:29 +00:00
parent 69e067e0d2
commit bc65af3b9c
7 changed files with 42 additions and 35 deletions

View File

@@ -3,15 +3,11 @@
int main(int argc, char *argv[]) {
PIVector2D<double> v(2, 2, PIVector<double>() << 1 << 2 << 3 << 4);
piCout << v;
PIByteArray ba;
ba << v;
piCout << ba.size();
PIVector2D<double> v2;
ba >> v2;
piCout << v2;
piCout << v2[0][1];
PIDir dir("");
PIVector<PIFile::FileInfo> el = dir.entries();
/*piCout << el.size();
piForeachC (PIFile::FileInfo & i, el)
piCout << i;*/
return 0;
}