Initial refactoring of sequence diagram visitor to include participants
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user