1 | #ifndef DOMComment_HEADER_GUARD_
|
---|
2 | #define DOMComment_HEADER_GUARD_
|
---|
3 |
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright 2001-2002,2004 The Apache Software Foundation.
|
---|
7 | *
|
---|
8 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
9 | * you may not use this file except in compliance with the License.
|
---|
10 | * You may obtain a copy of the License at
|
---|
11 | *
|
---|
12 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
13 | *
|
---|
14 | * Unless required by applicable law or agreed to in writing, software
|
---|
15 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
17 | * See the License for the specific language governing permissions and
|
---|
18 | * limitations under the License.
|
---|
19 | */
|
---|
20 |
|
---|
21 | /*
|
---|
22 | * $Id: DOMComment.hpp,v 1.8 2004/09/26 15:38:02 gareth Exp $
|
---|
23 | */
|
---|
24 |
|
---|
25 | #include <xercesc/util/XercesDefs.hpp>
|
---|
26 | #include <xercesc/dom/DOMCharacterData.hpp>
|
---|
27 |
|
---|
28 | XERCES_CPP_NAMESPACE_BEGIN
|
---|
29 |
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * This interface inherits from <code>CharacterData</code> and represents the
|
---|
33 | * content of a comment, i.e., all the characters between the starting '
|
---|
34 | * <code><!--</code>' and ending '<code>--></code>'.
|
---|
35 | * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
|
---|
36 | *
|
---|
37 | * @since DOM Level 1
|
---|
38 | */
|
---|
39 | class CDOM_EXPORT DOMComment: public DOMCharacterData {
|
---|
40 | protected:
|
---|
41 | // -----------------------------------------------------------------------
|
---|
42 | // Hidden constructors
|
---|
43 | // -----------------------------------------------------------------------
|
---|
44 | /** @name Hidden constructors */
|
---|
45 | //@{
|
---|
46 | DOMComment() {};
|
---|
47 | //@}
|
---|
48 |
|
---|
49 | private:
|
---|
50 | // -----------------------------------------------------------------------
|
---|
51 | // Unimplemented constructors and operators
|
---|
52 | // -----------------------------------------------------------------------
|
---|
53 | /** @name Unimplemented constructors and operators */
|
---|
54 | //@{
|
---|
55 | DOMComment(const DOMComment &);
|
---|
56 | DOMComment & operator = (const DOMComment &);
|
---|
57 | //@}
|
---|
58 |
|
---|
59 | public:
|
---|
60 | // -----------------------------------------------------------------------
|
---|
61 | // All constructors are hidden, just the destructor is available
|
---|
62 | // -----------------------------------------------------------------------
|
---|
63 | /** @name Destructor */
|
---|
64 | //@{
|
---|
65 | /**
|
---|
66 | * Destructor
|
---|
67 | *
|
---|
68 | */
|
---|
69 | virtual ~DOMComment() {};
|
---|
70 | //@}
|
---|
71 | };
|
---|
72 |
|
---|
73 | XERCES_CPP_NAMESPACE_END
|
---|
74 |
|
---|
75 | #endif
|
---|
76 |
|
---|