Updated docs

This commit is contained in:
Bartek Kryza
2023-03-27 22:52:31 +02:00
parent e9a4504827
commit 8c8bd4464a
2 changed files with 24 additions and 1 deletions

View File

@@ -171,11 +171,13 @@ using BVector2 = BVector;
using AIntString = AString<int>;
using ACharString = AString<char>;
using AWCharString = AString<wchar_t>;
using AStringString = AString<std::string>;
using BStringString = AStringString;
class R {
using AWCharString = AString<wchar_t>;
PairPairBA<bool> bapair;
APtr<bool> abool;

View File

@@ -4,6 +4,7 @@
* [`namespaces`](#namespaces)
* [`elements`](#elements)
* [`paths`](#paths)
* [`context`](#context)
* [`relationships`](#relationships)
* [`subclasses`](#subclasses)
@@ -52,6 +53,26 @@ from an included namespace:
- ns1::ns2::MyClass
```
## `paths`
This filter allows to include or exclude from the diagram elements declared
in specific files.
```yaml
diagrams:
t00061_class:
type: class
relative_to: ../../tests/t00061
glob: [t00061.cc]
include:
paths: [include/t00061_a.h]
using_namespace:
- clanguml::t00061
```
Currently, this filter does not allow any globbing or wildcards, however
paths to directories can be specified.
## `context`
This filter allows to limit the diagram elements only to classes which are in direct relationship (of any kind) with