summaryrefslogtreecommitdiff
path: root/src/data/style.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/style.cpp')
-rw-r--r--src/data/style.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/data/style.cpp b/src/data/style.cpp
index 39314cb..7af95ca 100644
--- a/src/data/style.cpp
+++ b/src/data/style.cpp
@@ -19,6 +19,10 @@
#include "style.h"
#include "tikzit.h"
+Style *noneStyle = new Style("none", new GraphElementData());
+Style *unknownStyle = new Style("unknown", new GraphElementData({GraphElementProperty("tikzit fill", "blue")}));
+Style *noneEdgeStyle = new Style("none", new GraphElementData({GraphElementProperty("-")}));
+
Style::Style() : _name("none")
{
_data = new GraphElementData(this);