X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=odcread.cc;h=e049bb071e7bd90a263bbca7043cb66c930123a2;hb=252b7a3f5d7ea1205ea360cb2bc59853f60df070;hp=32fcd6b25471d2b368f16e05c10cf00105f0a77c;hpb=121a58d72f3b5e537007072f93397f6e6661fb90;p=odcread.git diff --git a/odcread.cc b/odcread.cc index 32fcd6b..e049bb0 100644 --- a/odcread.cc +++ b/odcread.cc @@ -25,9 +25,14 @@ 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->toString() << std::endl; std::cout << in.tellg() << " " << in.eof() << std::endl; + + std::cout << odc::ContainerModel(0).getTypePath().toString() << std::endl; return 0; }