Adding first code drop
[demorecorder] / src / AppSettings.vala
1 namespace IdWorks {
2
3 protected struct AppSettings {
4
5   public string working_folder; 
6   
7   public string serialize_to_string() {
8     string ret = "";
9     /// TODO
10     return ret;
11   }
12   
13   public void deserialize_from_string(string data) {
14     /// TODO
15   }
16   
17 }
18
19 }