[Doc] Add links between topics and relevant items

The documentation has topics, for example topic App which contains
namespace App or topic Document that contains class Document.  This
commit makes sure that the topic has a link to the relevant class or
namespace, whereas the relevant class or namespace refers back to the
topic for a more high-level overview.
This commit is contained in:
Pieter Hijma
2025-03-26 17:08:57 +01:00
committed by Chris Hennes
parent 032cb79301
commit 8ea31acbd2
5 changed files with 29 additions and 12 deletions

View File

@@ -101,7 +101,10 @@ public:
};
/** Base class of all Classes handled in the Document
/**
* @brief %Base class of all objects handled in the @ref App::Document "Document".
* @ingroup DocObject
* @details For a more high-level overview see topic @ref DocObject "Document Object".
*/
class AppExport DocumentObject: public App::TransactionalObject
{