CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
settingstree.cxh
1#include <cx/thread.h>
2#include <cx/fs/vfsobj.cxh>
3#include <cx/ssdtree/ssdtreeobj.cxh>
4
5class SettingsTree extends SSDTree
6{
7 object:VFS vfs;
8 string filename;
9
10 // interval to flush to disk
11 int64 interval;
12
13 // timestamp of last background check
14 int64 check;
15
16 // timestamp the settings were last saved to disk
17 int64 saved;
18
19 // re-check all bound variables at next flush
20 bool checkbound;
21
22 factory create();
23 init();
24}