Files Classes Functions Hierarchy
00001 #ifndef MKERRORSCONFIG_H 00002 #define MKERRORSCONFIG_H 00003 00004 #include <cassert> 00005 #include <deque> 00006 using namespace std; 00007 00008 #include <mkerrors.h> 00009 00035 class mkerrorsconfig 00036 { 00037 public: 00038 00040 bool globalconfigfile_exists; 00041 00043 static string globalconfigfile; 00044 00045 //static string localconfigfile; - allow local override 00046 00049 boolc read(); 00050 00052 deque<mkerrorscompiletag> vi; 00053 00055 mkerrorsconfig(); 00056 00058 boolc find( mkerrorscompiletag& ct, stringc & id) const; 00059 00060 }; 00061 00062 00063 #endif 00064
1.5.8