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

« back to all changes in this revision

Viewing changes to src/xercesc/validators/common/AllContentModel.hpp

  • 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: AllContentModel.hpp 677705 2008-07-17 20:15:32Z amassari $
 
19
 * $Id: AllContentModel.hpp 901107 2010-01-20 08:45:02Z borisk $
20
20
 */
21
21
 
22
22
#if !defined(XERCESC_INCLUDE_GUARD_ALLCONTENTMODEL_HPP)
161
161
}
162
162
 
163
163
inline bool
164
 
AllContentModel::handleRepetitions( const QName* const curElem,
165
 
                                    unsigned int curState,
166
 
                                    unsigned int currentLoop,
167
 
                                    unsigned int& nextState,
168
 
                                    unsigned int& nextLoop,
169
 
                                    XMLSize_t elementIndex,
170
 
                                    SubstitutionGroupComparator * comparator) const
 
164
AllContentModel::handleRepetitions( const QName* const /*curElem*/,
 
165
                                    unsigned int /*curState*/,
 
166
                                    unsigned int /*currentLoop*/,
 
167
                                    unsigned int& /*nextState*/,
 
168
                                    unsigned int& /*nextLoop*/,
 
169
                                    XMLSize_t /*elementIndex*/,
 
170
                                    SubstitutionGroupComparator * /*comparator*/) const
171
171
{
172
172
    return true;
173
173
}
175
175
XERCES_CPP_NAMESPACE_END
176
176
 
177
177
#endif
178