X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=odcread.cc;h=151c86181db470156f3c31c3154bafc0255d8941;hb=cf035fa1849a5e65c0d636ce2718bc2c85994680;hp=32fcd6b25471d2b368f16e05c10cf00105f0a77c;hpb=121a58d72f3b5e537007072f93397f6e6661fb90;p=odcread.git diff --git a/odcread.cc b/odcread.cc index 32fcd6b..151c861 100644 --- a/odcread.cc +++ b/odcread.cc @@ -25,9 +25,19 @@ namespace odc { } int main(int argc, char *argv[]) { + if (argc < 2) { + return 1; + } std::ifstream in(argv[1], std::ios::in | std::ios::binary); odc::Store* s = odc::importDocument(in); +// std::cout << s->toPlainText() << std::endl; +// std::cout << std::endl << std::endl; + std::cout << s->toString() << std::endl; - std::cout << in.tellg() << " " << in.eof() << 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; }