arabica/include/DOM/CDATASection.hpp
2010-12-10 09:24:34 +00:00

54 lines
1.7 KiB
C++

#ifndef JEZUK_DOM_CDATASECTION_H
#define JEZUK_DOM_CDATASECTION_H
////////////////////////////
// C++ DOM definition
//
// $Id$
////////////////////////////
#include <DOM/Text.hpp>
namespace Arabica
{
namespace DOM
{
template<class stringT, class string_adaptorT> class CDATASection_impl;
template<class stringT, class string_adaptorT = Arabica::default_string_adaptor<stringT> >
class CDATASection : public Text<stringT, string_adaptorT>
{
typedef Text<stringT, string_adaptorT> TextT;
public:
typedef Node<stringT, string_adaptorT> NodeT;
CDATASection() : Text<stringT, string_adaptorT>() { }
explicit CDATASection(CDATASection_impl<stringT, string_adaptorT>* impl) : Text<stringT, string_adaptorT>(impl) { }
CDATASection(const CDATASection& rhs) : Text<stringT, string_adaptorT>(rhs) { }
explicit CDATASection(const Node<stringT, string_adaptorT>& rhs) : Text<stringT, string_adaptorT>(rhs, 0)
{
if(NodeT::impl_ == 0) // null nodes can always be cast
return;
if(rhs.getNodeType() != Node_base::CDATA_SECTION_NODE)
throw DOMBadCast("CDATASection");
} // CDATASection
CDATASection<stringT, string_adaptorT> splitText(int offset)
{
TextT::tImpl()->throwIfReadOnly();
return static_cast<CDATASection<stringT, string_adaptorT> >(TextT::tImpl()->splitText(offset));
} // splitText
}; // class CDATASection
////////////////////////////////////////////////////////////////////
template<class stringT, class string_adaptorT>
class CDATASection_impl : public virtual Text_impl<stringT, string_adaptorT>
{
public:
virtual ~CDATASection_impl() { }
}; // CDATASection_impl
} // namespace DOM
} // namespace Arabica
#endif