~ubuntu-branches/ubuntu/precise/xerces-c/precise-security

« back to all changes in this revision

Viewing changes to src/xercesc/framework/XMLAttr.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jay Berkenbilt
  • Date: 2010-02-06 16:46:23 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100206164623-xbntkcs6ks20nboa
Tags: 3.1.0-1
* New upstream release
* Updated standards version to 3.8.4.  No changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
6
 * (the "License"); you may not use this file except in compliance with
7
7
 * the License.  You may obtain a copy of the License at
8
 
 * 
 
8
 *
9
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 
 * 
 
10
 *
11
11
 * Unless required by applicable law or agreed to in writing, software
12
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
16
 */
17
17
 
18
18
/**
19
 
 * $Id: XMLAttr.cpp 555320 2007-07-11 16:05:13Z amassari $
 
19
 * $Id: XMLAttr.cpp 901107 2010-01-20 08:45:02Z borisk $
20
20
 */
21
21
 
22
22
 
39
39
    , fValueBufSz(0)
40
40
    , fValue(0)
41
41
    , fAttName(0)
42
 
    , fMemoryManager(manager)  
 
42
    , fMemoryManager(manager)
43
43
{
44
44
    fAttName = new (fMemoryManager) QName(fMemoryManager);
45
45
}
52
52
                    , const XMLCh* const        attrValue
53
53
                    , const XMLAttDef::AttTypes type
54
54
                    , const bool                specified
55
 
                    , MemoryManager* const      manager 
56
 
                    , DatatypeValidator * datatypeValidator
57
 
                    , const bool isSchema ):
 
55
                    , MemoryManager* const      manager
 
56
                    , DatatypeValidator*
 
57
                    , const bool /*isSchema*/ ):
58
58
 
59
59
      fSpecified(specified)
60
60
    , fType(type)
61
61
    , fValueBufSz(0)
62
62
    , fValue(0)
63
63
    , fAttName(0)
64
 
    , fMemoryManager(manager)   
 
64
    , fMemoryManager(manager)
65
65
{
66
66
    CleanupType cleanup(this, &XMLAttr::cleanUp);
67
67
 
89
89
                    , const XMLCh* const        attrValue
90
90
                    , const XMLAttDef::AttTypes type
91
91
                    , const bool                specified
92
 
                    , MemoryManager* const      manager 
93
 
                    , DatatypeValidator * datatypeValidator
94
 
                    , const bool isSchema ):
 
92
                    , MemoryManager* const      manager
 
93
                    , DatatypeValidator *
 
94
                    , const bool /*isSchema*/ ):
95
95
 
96
96
      fSpecified(specified)
97
97
    , fType(type)
98
98
    , fValueBufSz(0)
99
99
    , fValue(0)
100
100
    , fAttName(0)
101
 
    , fMemoryManager(manager)  
 
101
    , fMemoryManager(manager)
102
102
{
103
103
    CleanupType cleanup(this, &XMLAttr::cleanUp);
104
104
 
170
170
}
171
171
 
172
172
XERCES_CPP_NAMESPACE_END
173