removed: doc functionality (generating documentation from a model)

we can use our own class (based on FlatConnector and FlatExpression) to generate documentation




git-svn-id: svn://ttmath.org/publicrep/morm/trunk@1213 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2019-09-18 15:55:42 +00:00
parent bb3f69fe8d
commit a5d5a81a57
16 changed files with 17 additions and 800 deletions

View File

@@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2018, Tomasz Sowa
* Copyright (c) 2018-2019, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -73,9 +73,6 @@ public:
virtual void set_db_connector(DbConnector & db_connector);
virtual DbConnector * get_db_connector();
virtual void set_doc_connector(FlatConnector & doc_connector);
virtual FlatConnector * get_doc_connector();
virtual void set_clearer(Clearer & clearer);
virtual Clearer * get_clearer();
@@ -87,7 +84,6 @@ protected:
FlatConnector * flat_connector;
DbConnector * db_connector;
FlatConnector * doc_connector;
PT::TextStream * out_stream; // IMPROVE ME give here an interface to the base stream (implement him)
bool out_stream_allocated;