DEADSOFTWARE

Disable debug output, read TextPieces into memory
[odcread.git] / odcread.cc
index a6765e913ab97614b3ceb0d877ca21e0b6a1d1fd..6d506685882012eef28356b70f36ef21e8fd51cb 100644 (file)
@@ -30,7 +30,13 @@ 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 << std::endl << 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;
 }