xmltooling
3.2.0
|
Licensed to the University Corporation for Advanced Internet Development, Inc. More...
Classes | |
class | xmltooling::XMLObjectChildrenList< Container, _Ty > |
STL-compatible container that mediates access to underlying lists of typed XML children. More... | |
class | xmltooling::XMLObjectPairList< Container, _Ty > |
STL-compatible container that mediates access to underlying lists of typed XML children that come in pairs. More... | |
class | xmltooling::XMLObjectChildrenIterator< Container, _Ty > |
STL iterator that mediates access to an iterator over typed XML children. More... | |
class | xmltooling::XMLObjectChildrenList< Container, _Ty > |
STL-compatible container that mediates access to underlying lists of typed XML children. More... | |
class | xmltooling::XMLObjectPairList< Container, _Ty > |
STL-compatible container that mediates access to underlying lists of typed XML children that come in pairs. More... | |
Namespaces | |
xmltooling | |
Public namespace of XML Tooling library. | |
Macros | |
#define | VectorOf(type) xmltooling::XMLObjectChildrenList< std::vector<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a vector. More... | |
#define | ListOf(type) xmltooling::XMLObjectChildrenList< std::list<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a list. More... | |
#define | DequeOf(type) xmltooling::XMLObjectChildrenList< std::deque<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a deque. More... | |
#define | VectorOfPairs(type1, type2) xmltooling::XMLObjectPairList< std::vector< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a vector. More... | |
#define | ListOfPairs(type1, type2) xmltooling::XMLObjectPairList< std::list< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a list. More... | |
#define | DequeOfPairs(type1, type2) xmltooling::XMLObjectPairList< std::deque< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a deque. More... | |
Licensed to the University Corporation for Advanced Internet Development, Inc.
(UCAID) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership.
UCAID licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
STL-compatible container wrapper.
#define DequeOf | ( | type | ) | xmltooling::XMLObjectChildrenList< std::deque<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a deque.
type | the type of object in the deque |
#define DequeOfPairs | ( | type1, | |
type2 | |||
) | xmltooling::XMLObjectPairList< std::deque< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a deque.
type1 | the first type of object in the vector |
type2 | the second type of object in the vector |
#define ListOf | ( | type | ) | xmltooling::XMLObjectChildrenList< std::list<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a list.
type | the type of object in the list |
#define ListOfPairs | ( | type1, | |
type2 | |||
) | xmltooling::XMLObjectPairList< std::list< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a list.
type1 | the first type of object in the vector |
type2 | the second type of object in the vector |
#define VectorOf | ( | type | ) | xmltooling::XMLObjectChildrenList< std::vector<type*> > |
Shorthand for an XMLObjectChildrenList wrapped around a vector.
type | the type of object in the vector |
#define VectorOfPairs | ( | type1, | |
type2 | |||
) | xmltooling::XMLObjectPairList< std::vector< std::pair<type1*,type2*> > > |
Shorthand for an XMLObjectPairList wrapped around a vector.
type1 | the first type of object in the vector |
type2 | the second type of object in the vector |