mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
#ifndef JEZUK_DOM_ENTITYREFERENCE_H
|
|
#define JEZUK_DOM_ENTITYREFERENCE_H
|
|
|
|
////////////////////////////
|
|
// C++ DOM definition
|
|
//
|
|
// $Id$
|
|
////////////////////////////
|
|
|
|
#include <DOM/Node.hpp>
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace DOM
|
|
{
|
|
template<class stringT, class string_adaptorT> class EntityReference_impl;
|
|
|
|
template<class stringT, class string_adaptorT = Arabica::default_string_adaptor<stringT> >
|
|
class EntityReference : public Node<stringT, string_adaptorT>
|
|
{
|
|
typedef EntityReference_impl<stringT, string_adaptorT> EntityReference_implT;
|
|
|
|
public:
|
|
typedef Node<stringT, string_adaptorT> NodeT;
|
|
|
|
EntityReference() : NodeT() { }
|
|
explicit EntityReference(EntityReference_implT* impl) : NodeT(impl) { }
|
|
EntityReference(const EntityReference& rhs) : NodeT(rhs) { }
|
|
explicit EntityReference(const NodeT& rhs) : NodeT(rhs)
|
|
{
|
|
if(dynamic_cast<EntityReference_implT*>(rhs.impl()) == 0)
|
|
throw std::bad_cast();
|
|
} // EntityReference
|
|
}; // class EntityReference
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
template<class stringT, class string_adaptorT>
|
|
class EntityReference_impl : virtual public Node_impl<stringT, string_adaptorT>
|
|
{
|
|
public:
|
|
virtual ~EntityReference_impl () { }
|
|
}; // EntityReference_impl
|
|
|
|
} // namespace DOM
|
|
} // namespace Arabica
|
|
|
|
#endif
|
|
|