Base classes for open content models.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractAttributeExtensibleXMLObject.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 AbstractAttributeExtensibleXMLObject.h\r
19  * \r
20  * An abstract implementation of a DOM-caching AttributeExtensibleXMLObject \r
21  */\r
22 \r
23 #if !defined(__xmltooling_absattrextxmlobj_h__)\r
24 #define __xmltooling_absattrextxmlobj_h__\r
25 \r
26 #include <map>\r
27 #include <xmltooling/AbstractDOMCachingXMLObject.h>\r
28 #include <xmltooling/AttributeExtensibleXMLObject.h>\r
29 \r
30 using namespace xercesc;\r
31 \r
32 #if defined (_MSC_VER)\r
33     #pragma warning( push )\r
34     #pragma warning( disable : 4250 4251 )\r
35 #endif\r
36 \r
37 namespace xmltooling {\r
38 \r
39     /**\r
40      * An abstract implementation of a DOM-caching AttributeExtensibleXMLObject.\r
41      */\r
42     class XMLTOOL_API AbstractAttributeExtensibleXMLObject : public virtual AbstractDOMCachingXMLObject\r
43     {\r
44     public:\r
45         virtual ~AbstractAttributeExtensibleXMLObject();\r
46         \r
47         /**\r
48          * @see AttributeExtensibleXMLObject::getAttribute()\r
49          */\r
50         virtual const XMLCh* getAttribute(QName& qualifiedName) const {\r
51             std::map<QName,XMLCh*>::const_iterator i=m_attributeMap.find(qualifiedName);\r
52             return (i==m_attributeMap.end()) ? NULL : i->second;\r
53         }\r
54         \r
55         /**\r
56          * @see AttributeExtensibleXMLObject::setAttribute()\r
57          */\r
58         virtual void setAttribute(QName& qualifiedName, const XMLCh* value);\r
59     \r
60      protected:\r
61         /**\r
62          * Constructor\r
63          * \r
64          * @param namespaceURI the namespace the element is in\r
65          * @param elementLocalName the local name of the XML element this Object represents\r
66          * @param namespacePrefix the namespace prefix to use\r
67          */\r
68         AbstractAttributeExtensibleXMLObject(\r
69             const XMLCh* namespaceURI=NULL, const XMLCh* elementLocalName=NULL, const XMLCh* namespacePrefix=NULL\r
70             ) : AbstractDOMCachingXMLObject(namespaceURI,elementLocalName, namespacePrefix) {}\r
71 \r
72     private:\r
73         std::map<QName,XMLCh*> m_attributeMap;\r
74     };\r
75     \r
76 };\r
77 \r
78 #if defined (_MSC_VER)\r
79     #pragma warning( pop )\r
80 #endif\r
81 \r
82 #endif /* __xmltooling_absattrextxmlobj_h__ */\r