2abf232bf69dbf60e78a6040e5bc9cad76fffa8a
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractSimpleElement.h
1 /*
2  *  Copyright 2001-2009 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/AbstractSimpleElement.h
19  * 
20  * AbstractXMLObject mixin that implements a simple string-based content model 
21  */
22
23 #ifndef __xmltooling_abssimpleel_h__
24 #define __xmltooling_abssimpleel_h__
25
26 #include <xmltooling/AbstractXMLObject.h>
27
28 #if defined (_MSC_VER)
29     #pragma warning( push )
30     #pragma warning( disable : 4250 4251 )
31 #endif
32
33 namespace xmltooling {
34
35     /**
36      * AbstractXMLObject mixin that implements a simple string-based content model.
37      * Inherit from this class to support string-based element content.
38      */
39     class XMLTOOL_API AbstractSimpleElement : public virtual AbstractXMLObject
40     {
41     public:
42         virtual ~AbstractSimpleElement();
43         
44         // Virtual function overrides.
45         bool hasChildren() const;
46         const std::list<XMLObject*>& getOrderedChildren() const;
47         void removeChild(XMLObject* child);
48         const XMLCh* getTextContent(unsigned int position=0) const;
49         void setTextContent(const XMLCh* value, unsigned int position=0);
50         
51     protected:
52         AbstractSimpleElement();
53         
54         /** Copy constructor. */
55         AbstractSimpleElement(const AbstractSimpleElement& src);
56
57     private:
58         XMLCh* m_value;
59
60         static std::list<XMLObject*> m_no_children;
61     };
62     
63 };
64
65 #if defined (_MSC_VER)
66     #pragma warning( pop )
67 #endif
68
69 #endif /* __xmltooling_abssimpleel_h__ */