DEADSOFTWARE

Almost-correct toPlainText
[odcread.git] / odcread.cc
index e049bb071e7bd90a263bbca7043cb66c930123a2..151c86181db470156f3c31c3154bafc0255d8941 100644 (file)
@@ -30,9 +30,14 @@ 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->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;
 
-       std::cout << odc::ContainerModel(0).getTypePath().toString() << std::endl;
+//     odc::TypePath path;
+//     odc::ContainerModel(0).getTypePath(&path);
+//     std::cout << path.toString() << std::endl;
        return 0;
 }