Adding first code drop
[demorecorder] / src / AppSettings.vala
diff --git a/src/AppSettings.vala b/src/AppSettings.vala
new file mode 100644 (file)
index 0000000..415f891
--- /dev/null
@@ -0,0 +1,19 @@
+namespace IdWorks {
+
+protected struct AppSettings {
+
+  public string working_folder; 
+  
+  public string serialize_to_string() {
+    string ret = "";
+    /// TODO
+    return ret;
+  }
+  
+  public void deserialize_from_string(string data) {
+    /// TODO
+  }
+  
+}
+
+}