X-Git-Url: http://git.maemo.org/git/?p=demorecorder;a=blobdiff_plain;f=src%2FAppSettings.vala;fp=src%2FAppSettings.vala;h=415f8915d8cdd8bf3743c8029b63bd34176eb78e;hp=0000000000000000000000000000000000000000;hb=804630a4e0d41b182d8540f2aec69cf25ca0acfd;hpb=753fb925588aeeacdd74a163672acf2bf362a99e diff --git a/src/AppSettings.vala b/src/AppSettings.vala new file mode 100644 index 0000000..415f891 --- /dev/null +++ b/src/AppSettings.vala @@ -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 + } + +} + +}