![]() |
#include <HtmlBuilder.h>
Public Member Functions | |
TAG (const std::string &tag, std::ostream &stream) | |
virtual | ~TAG () |
TAG & | text () |
TAG & | text (const std::string &value) |
TAG & | text (int value) |
Protected Attributes | |
std::ostream & | m_stream |
Private Attributes | |
std::string | m_tag |
std::stringstream | m_value |
Definition at line 33 of file HtmlBuilder.h.
HTML::TAG::TAG | ( | const std::string & | tag, | |
std::ostream & | stream | |||
) | [inline] |
virtual HTML::TAG::~TAG | ( | ) | [inline, virtual] |
TAG& HTML::TAG::text | ( | int | value | ) | [inline] |
TAG& HTML::TAG::text | ( | const std::string & | value | ) | [inline] |
TAG& HTML::TAG::text | ( | ) | [inline] |
Definition at line 48 of file HtmlBuilder.h.
References 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().
00049 { m_stream << ">"; return *this; }
std::ostream& HTML::TAG::m_stream [protected] |
Definition at line 60 of file HtmlBuilder.h.
Referenced by HTML::TD::align(), HTML::TABLE::border(), HTML::TABLE::cellspacing(), HTML::A::href(), TAG(), text(), HTML::TABLE::width(), and ~TAG().
std::string HTML::TAG::m_tag [private] |
Definition at line 56 of file HtmlBuilder.h.
std::stringstream HTML::TAG::m_value [private] |
Definition at line 57 of file HtmlBuilder.h.