Public Member Functions
HTML::TABLE Class Reference

#include <HtmlBuilder.h>

Inheritance diagram for HTML::TABLE:
Inheritance graph
[legend]
Collaboration diagram for HTML::TABLE:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 TABLE (std::ostream &stream)
TABLEborder (int value)
TABLEcellspacing (int value)
TABLEwidth (int value)

Detailed Description

Definition at line 147 of file HtmlBuilder.h.


Constructor & Destructor Documentation

HTML::TABLE::TABLE ( std::ostream &  stream) [inline]

Definition at line 150 of file HtmlBuilder.h.

  : TAG( "TABLE", stream ) {}

Member Function Documentation

TABLE& HTML::TABLE::border ( int  value) [inline]

Definition at line 153 of file HtmlBuilder.h.

References HTML::TAG::m_stream.

Referenced by FIX::HttpConnection::processRoot(), and FIX::HttpConnection::processSession().

  { m_stream << " border='" << value << "'"; return *this; }
TABLE& HTML::TABLE::cellspacing ( int  value) [inline]

Definition at line 155 of file HtmlBuilder.h.

References HTML::TAG::m_stream.

Referenced by FIX::HttpConnection::processRoot(), and FIX::HttpConnection::processSession().

  { m_stream << " cellspacing='" << value << "'"; return *this; }
TABLE& HTML::TABLE::width ( int  value) [inline]

Definition at line 157 of file HtmlBuilder.h.

References HTML::TAG::m_stream.

Referenced by FIX::HttpConnection::processRoot(), and FIX::HttpConnection::processSession().

  { m_stream << " width='" << value << "%'"; return *this; }

The documentation for this class was generated from the following file:

Generated on Mon Sep 15 2014 01:23:58 for QuickFIX by doxygen 1.7.6.1 written by Dimitri van Heesch, © 1997-2001