Added handling of comment decorators (skip, note) in sequence diagram comments (#194)

This commit is contained in:
Bartek Kryza
2023-10-21 17:07:28 +02:00
parent ddbfffbf23
commit 7f595b1c54
19 changed files with 403 additions and 45 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
namespace clanguml {
namespace t20038 {
template <typename T> T add_impl(T a, T b) { return a + b; };
template <typename T> T add(T a, T b)
{
// Invoke 'add' implementation
return add_impl(a, b);
};
}
}