Fixed formatting
This commit is contained in:
@@ -151,7 +151,7 @@ public:
|
|||||||
|
|
||||||
ostr << class_type << " " << c.alias();
|
ostr << class_type << " " << c.alias();
|
||||||
|
|
||||||
if(!c.style.empty())
|
if (!c.style.empty())
|
||||||
ostr << " " << c.style;
|
ostr << " " << c.style;
|
||||||
|
|
||||||
ostr << " {" << '\n';
|
ostr << " {" << '\n';
|
||||||
@@ -317,7 +317,7 @@ public:
|
|||||||
{
|
{
|
||||||
ostr << "enum " << e.alias();
|
ostr << "enum " << e.alias();
|
||||||
|
|
||||||
if(!e.style.empty())
|
if (!e.style.empty())
|
||||||
ostr << " " << e.style;
|
ostr << " " << e.style;
|
||||||
|
|
||||||
ostr << " {" << '\n';
|
ostr << " {" << '\n';
|
||||||
|
|||||||
@@ -9,14 +9,10 @@ class A {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// @uml{style[#line.dotted:blue]}
|
/// @uml{style[#line.dotted:blue]}
|
||||||
enum B {
|
enum B { one, two, three };
|
||||||
one,
|
|
||||||
two,
|
|
||||||
three
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @uml{style[#pink;line:red;line.bold;text:red]}
|
/// @uml{style[#pink;line:red;line.bold;text:red]}
|
||||||
template<typename T> class C {
|
template <typename T> class C {
|
||||||
T ttt;
|
T ttt;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user