Support RetrievalMethod local references.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractElementProxy.h
1 /*
2  *  Copyright 2001-2006 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file xmltooling/AbstractElementProxy.h
19  * 
20  * AbstractXMLObject mixin that implements an open content model 
21  */
22
23 #ifndef __xmltooling_abseleproxy_h__
24 #define __xmltooling_abseleproxy_h__
25
26 #include <xmltooling/AbstractComplexElement.h>
27 #include <xmltooling/ElementProxy.h>
28
29 #if defined (_MSC_VER)
30     #pragma warning( push )
31     #pragma warning( disable : 4250 4251 )
32 #endif
33
34 namespace xmltooling {
35
36     /**
37      * AbstractXMLObject mixin that layers ElementProxy on top of a complex element.
38      * Inherit from this class to implement complex content
39      * and expose the underlying child collection in read/write mode.
40      */
41     class XMLTOOL_API AbstractElementProxy : public virtual ElementProxy, public AbstractComplexElement
42     {
43     public:
44         virtual ~AbstractElementProxy() {}
45         
46         virtual ListOf(XMLObject) getXMLObjects() {
47             return ListOf(XMLObject)(this,m_children,NULL,m_children.end());
48         }
49     
50         virtual const std::list<XMLObject*>& getXMLObjects() const {
51             return m_children;
52         }
53
54     protected:
55         AbstractElementProxy() {}
56         
57         /** Copy constructor. */
58         AbstractElementProxy(const AbstractElementProxy& src) : AbstractXMLObject(src), AbstractComplexElement(src) {}
59     };
60     
61 };
62
63 #if defined (_MSC_VER)
64     #pragma warning( pop )
65 #endif
66
67 #endif /* __xmltooling_abseleproxy_h__ */