- add progress to edge, dct and fft plugins
[FaRetSys.git] / IPlugin / IConfig.cs
blob5a1b1e244c6ae5ed49f7f36bcb0c069623180588
1 namespace Eithne
3 internal interface IConfig
5 void Set(string key, string val);
6 void Set(string key, int val);
7 void Set(string key, bool val);
9 string Get(string key, string def);
10 int Get(string key, int def);
11 bool Get(string key, bool def);