![]() |
#include <HtmlBuilder.h>
Public Member Functions | |
TD (std::ostream &stream) | |
TD & | align (const std::string &value) |
Definition at line 161 of file HtmlBuilder.h.
HTML::TD::TD | ( | std::ostream & | stream | ) | [inline] |
Definition at line 164 of file HtmlBuilder.h.
00165 : TAG( "TD", stream ) {}
TD& HTML::TD::align | ( | const std::string & | value | ) | [inline] |
Definition at line 167 of file HtmlBuilder.h.
References HTML::TAG::m_stream.
Referenced by FIX::HttpConnection::processRoot().
00168 { m_stream << " align='" << value << "'"; return *this; }