aboutsummaryrefslogtreecommitdiff
path: root/symbol.cpp
diff options
context:
space:
mode:
authorMikko Syrjä <mikko@3d-system.fi>2019-02-09 00:19:22 +0200
committerMikko Syrjä <mikko@3d-system.fi>2019-02-09 00:19:22 +0200
commit07fb2096878f9da573d663abeb3b62fb08cb3ccb (patch)
tree0d7e69233a2af79f1aa486fe287498fd550ce273 /symbol.cpp
parentf82b71e1c3b6b632c5c1af918b319d86b49eae75 (diff)
downloadsymedit-07fb2096878f9da573d663abeb3b62fb08cb3ccb.tar.gz
symedit-07fb2096878f9da573d663abeb3b62fb08cb3ccb.zip
Initial symbol structure support.
Diffstat (limited to 'symbol.cpp')
-rw-r--r--symbol.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/symbol.cpp b/symbol.cpp
new file mode 100644
index 0000000..a415b11
--- /dev/null
+++ b/symbol.cpp
@@ -0,0 +1,37 @@
+#include "symbol.h"
+
+//
+// symbol item functions
+//
+//! Constructor.
+SymEditSymbol::Item::Item()
+{
+
+}
+
+//
+// symbol functions
+//
+//! Constructor.
+SymEditSymbol::SymEditSymbol()
+{
+
+}
+
+//! Load symbol from string.
+/*!
+ \param string String buffer.
+*/
+void SymEditSymbol::Load(const QString& string)
+{
+
+}
+
+//! Save symbol to string.
+/*!
+ \param string String buffer.
+*/
+void SymEditSymbol::Save(QString& string) const
+{
+
+}