summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/entity.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/entity.hxx')
-rw-r--r--unoxml/source/dom/entity.hxx28
1 files changed, 19 insertions, 9 deletions
diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx
index 7c8b063b216a..dea53fd421ab 100644
--- a/unoxml/source/dom/entity.hxx
+++ b/unoxml/source/dom/entity.hxx
@@ -26,16 +26,19 @@
*
************************************************************************/
-#ifndef _ENTITY_HXX
-#define _ENTITY_HXX
+#ifndef DOM_ENTITY_HXX
+#define DOM_ENTITY_HXX
+
+#include <libxml/tree.h>
+#include <libxml/entities.h>
#include <sal/types.h>
+
#include <com/sun/star/uno/Reference.h>
-#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/xml/dom/XEntity.hpp>
-#include "node.hxx"
-#include <libxml/tree.h>
-#include <libxml/entities.h>
+
+#include <node.hxx>
+
using ::rtl::OUString;
using namespace com::sun::star::uno;
@@ -43,16 +46,23 @@ using namespace com::sun::star::xml::dom;
namespace DOM
{
- class CEntity : public cppu::ImplInheritanceHelper1< CNode, XEntity >
+ typedef ::cppu::ImplInheritanceHelper1< CNode, XEntity > CEntity_Base;
+
+ class CEntity
+ : public CEntity_Base
{
- friend class CNode;
+ private:
+ friend class CDocument;
+
private:
xmlEntityPtr m_aEntityPtr;
protected:
- CEntity(const xmlEntityPtr aEntityPtr);
+ CEntity(CDocument const& rDocument, ::osl::Mutex const& rMutex,
+ xmlEntityPtr const pEntity);
public:
+ virtual bool IsChildTypeAllowed(NodeType const nodeType);
/**
For unparsed entities, the name of the notation for the entity.