/usr/include/ACEXML/common/AttributesImpl.inl is in libacexml-dev 6.0.3+dfsg-0.1.
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 | // -*- C++ -*-
//
//$Id: AttributesImpl.inl 80826 2008-03-04 14:51:23Z wotte $
#include "ace/ACE.h"
#include "ace/OS_NS_string.h"
ACEXML_INLINE
ACEXML_Attribute::ACEXML_Attribute (void)
: uri_ (0),
localName_ (0),
qName_ (0),
type_ (0),
value_ (0)
{
}
ACEXML_INLINE
ACEXML_Attribute::ACEXML_Attribute (const ACEXML_Attribute &attr)
: uri_ (ACE::strnew (attr.uri_)),
localName_ (ACE::strnew (attr.localName_)),
qName_ (ACE::strnew (attr.qName_)),
type_ (ACE::strnew (attr.type_)),
value_ (ACE::strnew (attr.value_))
{
}
ACEXML_INLINE
ACEXML_Attribute::ACEXML_Attribute (const ACEXML_Char *uri,
const ACEXML_Char *localName,
const ACEXML_Char *qName,
const ACEXML_Char *type,
const ACEXML_Char *value)
: uri_ (ACE::strnew (uri)),
localName_ (ACE::strnew (localName)),
qName_ (ACE::strnew (qName)),
type_ (ACE::strnew (type)),
value_ (ACE::strnew (value))
{
}
ACEXML_INLINE
ACEXML_Attribute::~ACEXML_Attribute (void)
{
delete[] this->uri_;
delete[] this->localName_;
delete[] this->qName_;
delete[] this->type_;
delete[] this->value_;
}
ACEXML_INLINE const ACEXML_Char *
ACEXML_Attribute::uri (void) const
{
return this->uri_;
}
ACEXML_INLINE void
ACEXML_Attribute::uri (const ACEXML_Char *uri)
{
delete[] this->uri_;
this->uri_ = ACE::strnew (uri);
}
ACEXML_INLINE const ACEXML_Char *
ACEXML_Attribute::localName (void) const
{
return this->localName_;
}
ACEXML_INLINE void
ACEXML_Attribute::localName (const ACEXML_Char *localName)
{
delete[] this->localName_;
this->localName_ = ACE::strnew (localName);
}
ACEXML_INLINE const ACEXML_Char *
ACEXML_Attribute::qName (void) const
{
return this->qName_;
}
ACEXML_INLINE void
ACEXML_Attribute::qName (const ACEXML_Char *qName)
{
delete[] this->qName_;
this->qName_ = ACE::strnew (qName);
}
ACEXML_INLINE const ACEXML_Char *
ACEXML_Attribute::type (void) const
{
return this->type_;
}
ACEXML_INLINE void
ACEXML_Attribute::type (const ACEXML_Char *type)
{
delete[] this->type_;
this->type_ = ACE::strnew (type);
}
ACEXML_INLINE const ACEXML_Char *
ACEXML_Attribute::value (void) const
{
return this->value_;
}
ACEXML_INLINE void
ACEXML_Attribute::value (const ACEXML_Char *value)
{
delete[] this->value_;
this->value_ = ACE::strnew (value);
}
ACEXML_INLINE void
ACEXML_Attribute::setAttribute (const ACEXML_Char *uri,
const ACEXML_Char *localName,
const ACEXML_Char *qName,
const ACEXML_Char *type,
const ACEXML_Char *value)
{
this->uri (uri);
this->qName (qName);
this->localName (localName);
this->type (type);
this->value (value);
}
ACEXML_INLINE ACEXML_Attribute &
ACEXML_Attribute::operator= (const ACEXML_Attribute &rhs)
{
if (this != &rhs) // Check for self assignment
{
this->uri (rhs.uri ());
this->qName (rhs.qName ());
this->localName (rhs.localName ());
this->type (rhs.type ());
this->value (rhs.value ());
}
return *this;
}
ACEXML_INLINE bool
ACEXML_Attribute::operator!= (const ACEXML_Attribute &rhs) const
{
return (ACE_OS::strcmp (this->uri_, rhs.uri ()) == 0 &&
ACE_OS::strcmp (this->localName_, rhs.localName ()) == 0 &&
ACE_OS::strcmp (this->qName_, rhs .qName ()) == 0 &&
ACE_OS::strcmp (this->type_, rhs.type ()) == 0 &&
ACE_OS::strcmp (this->value_, rhs.value ()) == 0 ? false : true);
}
|