Files Classes Functions Hierarchy
#include <mkerrors.h>
Public Member Functions | |
| mkerrorscompiletag () | |
| Uninitialized. | |
| mkerrorscompiletag (stringc &id_, stringc &command_, stringc &libraries_) | |
| Initialized. | |
| stringc | xml () const |
| Write out the class as an xml". | |
Public Attributes | |
| string | id |
| Name of compile setup. | |
| string | command |
| e.g. | |
| string | libraries |
| Implementation specific library includes. | |
Definition at line 13 of file mkerrors.h.
| mkerrorscompiletag::mkerrorscompiletag | ( | ) |
| stringc mkerrorscompiletag::xml | ( | ) | const |
Write out the class as an xml".
Definition at line 184 of file mkerrors.cpp.
References command, libraries, and stringtag().
Referenced by mkerrorscompile::xml().
00185 { 00186 string s1; 00187 s1 += stringtag(id,"id"); 00188 s1 += stringtag(command,"command"); 00189 s1 += stringtag(libraries,"libraries"); 00190 s1 = stringtag(s1,"compiletag"); 00191 00192 return s1; 00193 }
| string mkerrorscompiletag::command |
| string mkerrorscompiletag::id |
Name of compile setup.
Definition at line 18 of file mkerrors.h.
Referenced by mkerrorscompile::compilecode().
Implementation specific library includes.
Definition at line 22 of file mkerrors.h.
Referenced by mkerrorscompile::eval2(), and xml().
1.5.8