mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#ifndef ARABICA_XSLT_MESSAGE_HANDLER_HPP
|
|
#define ARABICA_XSLT_MESSAGE_HANDLER_HPP
|
|
|
|
#include "../xslt_message.hpp"
|
|
#include "xslt_item_container_handler.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
template<class string_type, class string_adaptor>
|
|
class MessageHandler : public ItemContainerHandler<Message<string_type, string_adaptor> >
|
|
{
|
|
typedef ItemContainerHandler<Message<string_type, string_adaptor> > baseT;
|
|
public:
|
|
MessageHandler(CompilationContext<string_type, string_adaptor>& context) :
|
|
baseT(context)
|
|
{
|
|
} // MessageHandler
|
|
|
|
protected:
|
|
virtual Message<string_type, string_adaptor>* createContainer(const string_type& /* namespaceURI */,
|
|
const string_type& /* localName */,
|
|
const string_type& qName,
|
|
const SAX::Attributes<string_type, string_adaptor>& atts)
|
|
{
|
|
static const ValueRule rules[] = { { "terminate", false, No, AllowedYesNo },
|
|
{ 0, false, 0, 0 } };
|
|
return new Message<string_type, string_adaptor>(gatherAttributes(qName, atts, rules)["terminate"] == Yes);
|
|
} // createContainer
|
|
}; // class MessageHandler
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
|
|
#endif
|
|
|