Initial refactoring of sequence diagram visitor to include participants

This commit is contained in:
Bartek Kryza
2022-10-23 22:36:53 +02:00
parent a2705b10d9
commit 1fe9918c1a
13 changed files with 1089 additions and 116 deletions

View File

@@ -36,6 +36,10 @@ public:
{
}
optional_ref(T *value) { value_ = value; }
optional_ref(const T *value) { value_ = value; }
optional_ref(T &value) { value_ = &value; }
optional_ref(const T &value) { value_ = &value; }