/usr/include/quickfix/HtmlBuilder.h is in libquickfix-dev 1.13.3+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | /* -*- C++ -*- */
/****************************************************************************
** Copyright (c) quickfixengine.org All rights reserved.
**
** This file is part of the QuickFIX FIX Engine
**
** This file may be distributed under the terms of the quickfixengine.org
** license as defined by quickfixengine.org and appearing in the file
** LICENSE included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.quickfixengine.org/LICENSE for licensing information.
**
** Contact ask@quickfixengine.org if any conditions of this licensing are
** not clear to you.
**
****************************************************************************/
#ifndef HTML_BUILDER_H
#define HTML_BUILDER_H
#ifdef _MSC_VER
#pragma warning( disable : 4503 4355 4786 4290 )
#endif
#include <sstream>
namespace HTML
{
class TAG
{
public:
TAG( const std::string& tag, std::ostream& stream )
: m_tag( tag ), m_stream( stream )
{
m_stream << "<" << m_tag;
}
virtual ~TAG()
{
m_stream << m_value.str();
m_stream << "</" << m_tag << ">";
}
TAG& text()
{ m_stream << ">"; return *this; }
TAG& text( const std::string& value )
{ m_value << value; text(); return *this; }
TAG& text( int value )
{ m_value << value; text(); return *this; }
private:
std::string m_tag;
std::stringstream m_value;
protected:
std::ostream& m_stream;
};
class SPECIAL
{
public:
SPECIAL( const std::string& value, std::ostream& stream )
{
stream << "&" << value << ";";
}
};
class A : public TAG
{
public:
A( std::ostream& stream )
: TAG( "A", stream ) {}
A& href( const std::string& value )
{ m_stream << " href='" << value << "'"; return *this; }
};
class BODY : public TAG
{
public:
BODY( std::ostream& stream )
: TAG( "BODY", stream ) {}
};
class BR : public TAG
{
public:
BR( std::ostream& stream )
: TAG( "BR", stream ) {}
};
class CAPTION : public TAG
{
public:
CAPTION( std::ostream& stream )
: TAG( "CAPTION", stream ) {}
};
class CENTER : public TAG
{
public:
CENTER( std::ostream& stream )
: TAG( "CENTER", stream ) {}
};
class EM : public TAG
{
public:
EM( std::ostream& stream )
: TAG( "EM", stream ) {}
};
class H1 : public TAG
{
public:
H1( std::ostream& stream )
: TAG( "H1", stream ) {}
};
class H2 : public TAG
{
public:
H2( std::ostream& stream )
: TAG( "H2", stream ) {}
};
class HEAD : public TAG
{
public:
HEAD( std::ostream& stream )
: TAG( "HEAD", stream ) {}
};
class HR : public TAG
{
public:
HR( std::ostream& stream )
: TAG( "HR", stream ) {}
};
const char* NBSP = " ";
class TABLE : public TAG
{
public:
TABLE( std::ostream& stream )
: TAG( "TABLE", stream ) {}
TABLE& border( int value )
{ m_stream << " border='" << value << "'"; return *this; }
TABLE& cellspacing( int value )
{ m_stream << " cellspacing='" << value << "'"; return *this; }
TABLE& width( int value )
{ m_stream << " width='" << value << "%'"; return *this; }
};
class TD : public TAG
{
public:
TD( std::ostream& stream )
: TAG( "TD", stream ) {}
TD& align( const std::string& value )
{ m_stream << " align='" << value << "'"; return *this; }
};
class TITLE : public TAG
{
public:
TITLE( std::ostream& stream )
: TAG( "TITLE", stream ) {}
};
class TR : public TAG
{
public:
TR( std::ostream& stream )
: TAG( "TR", stream ) {}
};
}
#endif
|