Files Classes Functions Hierarchy
#include <mkerrorsstate.h>
Public Member Functions | |
| mkerrorsstate () | |
| Set up state information. | |
Public Attributes | |
| string | libraries |
| Currently this is not overloaded. | |
Definition at line 9 of file mkerrorsstate.h.
| mkerrorsstate::mkerrorsstate | ( | ) |
Set up state information.
Definition at line 9 of file mkerrorsstate.cpp.
References libraries, and stringtrim().
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 }
| string mkerrorsstate::libraries |
Currently this is not overloaded.
Definition at line 17 of file mkerrorsstate.h.
Referenced by mkerrorscompile::eval(), mkerrorscompile::eval2(), and mkerrorsstate().
1.5.8