Added decorator diagram scope

This commit is contained in:
Bartek Kryza
2021-07-30 00:39:43 +02:00
parent b5733b2605
commit 7b9fe2ee2d
8 changed files with 191 additions and 45 deletions

View File

@@ -13,7 +13,7 @@ class B {
};
///
/// @clanguml{note[bottom] C class note.}
/// @clanguml{note:t00028_class[bottom] C class note.}
/// This is class C.
class C {
};
@@ -30,6 +30,10 @@ template <typename T> class E {
T param;
};
/// \clanguml{note:other_diagram[left] G class note.}
class G {
};
/// @clanguml{note[ bottom ] F enum note.}
enum class F { one, two, three };
@@ -44,6 +48,8 @@ class R {
std::vector<std::shared_ptr<D>> ddd;
E<int> eee;
G **ggg;
};
} // namespace t00028