![]() |
#include <HtmlBuilder.h>
Public Member Functions | |
A (std::ostream &stream) | |
A & | href (const std::string &value) |
Definition at line 72 of file HtmlBuilder.h.
HTML::A::A | ( | std::ostream & | stream | ) | [inline] |
Definition at line 75 of file HtmlBuilder.h.
00076 : TAG( "A", stream ) {}
A& HTML::A::href | ( | const std::string & | value | ) | [inline] |
Definition at line 78 of file HtmlBuilder.h.
References HTML::TAG::m_stream.
Referenced by FIX::HttpConnection::processDisableSessions(), FIX::HttpConnection::processEnableSessions(), FIX::HttpConnection::processRefreshSession(), FIX::HttpConnection::processRefreshSessions(), FIX::HttpConnection::processRequest(), FIX::HttpConnection::processResetSession(), FIX::HttpConnection::processResetSessions(), FIX::HttpConnection::processRoot(), FIX::HttpConnection::processSession(), and FIX::HttpConnection::showRow().
00079 { m_stream << " href='" << value << "'"; return *this; }