X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=odcread.cc;h=27117ddeab85d2240d89bd82ce6a3c82d6ae7577;hb=9199c6da801c1555dadb23b230b400e3f1364abc;hp=a6765e913ab97614b3ceb0d877ca21e0b6a1d1fd;hpb=ca3a2a107aa425fe4b8afb0d1fd988a887ac8f40;p=odcread.git diff --git a/odcread.cc b/odcread.cc index a6765e9..27117dd 100644 --- a/odcread.cc +++ b/odcread.cc @@ -30,7 +30,11 @@ int main(int argc, char *argv[]) { } std::ifstream in(argv[1], std::ios::in | std::ios::binary); odc::Store* s = odc::importDocument(in); - std::cout << s->toString() << std::endl; - std::cout << in.tellg() << " " << in.eof() << std::endl; + //std::cout << s->toString() << std::endl; + //std::cout << in.tellg() << " " << in.eof() << std::endl; + + odc::TypePath path; + odc::ContainerModel(0).getTypePath(&path); + //std::cout << path.toString() << std::endl; return 0; }