namespace html class writer HTML writer class.
The writer class formats data for HTML output. It provides checks of the HTML syntax. THe writer is typically constructed and then passed to the html::document::write method to receive he HTML document.
~writer(void)
void text(const std::string& data)
void endLine(void)
void tag(const char* tagname, int nattr=0, const char** attr=0, const char** value=0)
nattr - Number of attributes to be included in the tag.
attr - List of pointers to attribute names.
value - List of pointers to attribute values.
void tag(const char* tagname, const attList& atl)
attr - List of attributes.
void tagNData(const char* tagname, int nattr=0, const char** attr=0, const char** value=0)
nattr - Number of attributes to be included in the tag.
attr - List of pointers to attribute names.
value - List of pointers to attribute values.
void tagNData(const char* tagname, const attList& atl)
attr - List of attributes.
void meta(const char* name, const char* value)
value - HTML meta-data value.
void meta(const char* name, double value)
value - Numberic HTML meta-data value.
void Integer(int N)
void endTag(const std::string& tagname)
void pushDefault(const attList& x)
const attList& refDefault(void) const
attList& refDefault(void)
void popDefault(void)
void sync(void)
alphabetic index hierarchy of classes
generated by doc++