78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
|
/* -*-mode:c++; c-file-style: "gnu";-*- */
|
||
|
/*
|
||
|
* $Id: HTMLAttribute.cpp,v 1.8 2014/04/23 20:55:04 sebdiaz Exp $
|
||
|
*
|
||
|
* Copyright (C) 1996 - 2004 Stephen F. Booth <sbooth@gnu.org>
|
||
|
* 2007 Sebastien DIAZ <sebastien.diaz@gmail.com>
|
||
|
* Part of the GNU cgicc library, http://www.gnu.org/software/cgicc
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 3 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||
|
*/
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
# pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#include "HTMLAttribute.h"
|
||
|
#include "CgiUtils.h"
|
||
|
|
||
|
// ============================================================
|
||
|
// Class HTMLAttribute
|
||
|
// ============================================================
|
||
|
cgicc::HTMLAttribute::HTMLAttribute()
|
||
|
{}
|
||
|
|
||
|
cgicc::HTMLAttribute::HTMLAttribute(const std::string& name)
|
||
|
: fName(name),
|
||
|
fValue(name)
|
||
|
{}
|
||
|
|
||
|
cgicc::HTMLAttribute::HTMLAttribute(const std::string& name,
|
||
|
const std::string& value)
|
||
|
: fName(name),
|
||
|
fValue(value)
|
||
|
{}
|
||
|
|
||
|
cgicc::HTMLAttribute::HTMLAttribute(const HTMLAttribute& attribute)
|
||
|
: MStreamable(),
|
||
|
fName(attribute.fName),
|
||
|
fValue(attribute.fValue)
|
||
|
{}
|
||
|
|
||
|
cgicc::HTMLAttribute::~HTMLAttribute()
|
||
|
{}
|
||
|
|
||
|
bool
|
||
|
cgicc::HTMLAttribute::operator== (const HTMLAttribute& att) const
|
||
|
{
|
||
|
return (stringsAreEqual(fName, att.fName)
|
||
|
&& stringsAreEqual(fValue, att.fValue));
|
||
|
}
|
||
|
|
||
|
cgicc::HTMLAttribute&
|
||
|
cgicc::HTMLAttribute::operator= (const HTMLAttribute& att)
|
||
|
{
|
||
|
fName = att.fName;
|
||
|
fValue = att.fValue;
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
cgicc::HTMLAttribute::render(std::ostream& out) const
|
||
|
{
|
||
|
out << getName() << "=\"" << getValue() << "\"";
|
||
|
}
|