X-Git-Url: http://deadsoftware.ru/gitweb?p=odcread.git;a=blobdiff_plain;f=odcread.cc;h=27117ddeab85d2240d89bd82ce6a3c82d6ae7577;hp=c843713451fae3916191777dd283528713841fa7;hb=9199c6da801c1555dadb23b230b400e3f1364abc;hpb=98bcd76b4c284676f55d754879dee9bda1898924 diff --git a/odcread.cc b/odcread.cc index c843713..27117dd 100644 --- a/odcread.cc +++ b/odcread.cc @@ -30,11 +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; + //std::cout << path.toString() << std::endl; return 0; }