Files Classes Functions Hierarchy
00001 #include <cassert> 00002 #include <iostream> 00003 #include <fstream> 00004 using namespace std; 00005 00006 #include <mkerrorsstate.h> 00007 #include <stringspace.h> 00008 00009 mkerrorsstate::mkerrorsstate() 00010 { 00011 static stringc lib("libraries"); 00012 00013 ifstream filelibraries(lib.c_str()); 00014 string lib2; 00015 if (filelibraries.eof()==false) 00016 getline(filelibraries,lib2); 00017 00018 libraries = stringtrim(lib2); 00019 } 00020 00021
1.5.8