Updated docs
This commit is contained in:
@@ -171,11 +171,13 @@ using BVector2 = BVector;
|
|||||||
|
|
||||||
using AIntString = AString<int>;
|
using AIntString = AString<int>;
|
||||||
using ACharString = AString<char>;
|
using ACharString = AString<char>;
|
||||||
using AWCharString = AString<wchar_t>;
|
|
||||||
using AStringString = AString<std::string>;
|
using AStringString = AString<std::string>;
|
||||||
using BStringString = AStringString;
|
using BStringString = AStringString;
|
||||||
|
|
||||||
class R {
|
class R {
|
||||||
|
using AWCharString = AString<wchar_t>;
|
||||||
|
|
||||||
PairPairBA<bool> bapair;
|
PairPairBA<bool> bapair;
|
||||||
|
|
||||||
APtr<bool> abool;
|
APtr<bool> abool;
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
* [`namespaces`](#namespaces)
|
* [`namespaces`](#namespaces)
|
||||||
* [`elements`](#elements)
|
* [`elements`](#elements)
|
||||||
|
* [`paths`](#paths)
|
||||||
* [`context`](#context)
|
* [`context`](#context)
|
||||||
* [`relationships`](#relationships)
|
* [`relationships`](#relationships)
|
||||||
* [`subclasses`](#subclasses)
|
* [`subclasses`](#subclasses)
|
||||||
@@ -52,6 +53,26 @@ from an included namespace:
|
|||||||
- ns1::ns2::MyClass
|
- 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`
|
## `context`
|
||||||
|
|
||||||
This filter allows to limit the diagram elements only to classes which are in direct relationship (of any kind) with
|
This filter allows to limit the diagram elements only to classes which are in direct relationship (of any kind) with
|
||||||
|
|||||||
Reference in New Issue
Block a user