aboutsummaryrefslogtreecommitdiff
path: root/symbol.cpp
diff options
context:
space:
mode:
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
+{
+
+}