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