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

@@ -122,19 +122,6 @@ void BaseExpression::dump_additional_info(Model & model)
}
/*
void BaseExpression::put_field_doc(void * pointer)
{
if( out_stream )
{
before_generate_from_model();
model.doc_field_pointer = pointer;
model.map_doc_fields();
after_generate_from_model();
}
}
*/
void BaseExpression::before_generate_from_model()
{
is_first_field = true;
@@ -265,14 +252,6 @@ void BaseExpression::save_foreign_key(const wchar_t * field_name, ModelEnv * mod
}
}
void BaseExpression::put_field_doc(Model & model, const void * field_pointer, bool insertable, bool updatable, bool is_primary_key, ModelEnv * model_env)
{
//model.doc_field_pointer = field_pointer;
model.model_env = model_env;
model.map_doc_fields();
model.model_env = nullptr;
//model.doc_field_pointer = nullptr;
}
void BaseExpression::before_field_name()
{