arabica/include/XSLT/impl/xslt_template.hpp
2007-10-26 19:12:27 +00:00

63 lines
1.8 KiB
C++
Executable file

#ifndef ARABICA_XSLT_TEMPLATE_HPP
#define ARABICA_XSLT_TEMPLATE_HPP
#include "xslt_item.hpp"
namespace Arabica
{
namespace XSLT
{
class Template : public ItemContainer
{
public:
Template(const std::pair<std::string, std::string>& name,
const std::pair<std::string, std::string>& mode,
const std::string& priority) :
matches_(),
name_(name),
mode_(mode)
{
} // Template
Template(const std::vector<Arabica::XPath::MatchExpr<std::string> >& matches,
const std::pair<std::string, std::string>& name,
const std::pair<std::string, std::string>& mode,
const std::string& priority) :
matches_(matches),
name_(name),
mode_(mode)
{
if(!priority.empty())
{
float p = boost::lexical_cast<float>(priority);
for(std::vector<Arabica::XPath::MatchExpr<std::string> >::iterator m = matches_.begin(), me = matches_.end(); m != me; ++m)
m->override_priority(p);
} // if ...
} // Template
virtual ~Template()
{
} // ~Template
virtual void execute(const DOM::Node<std::string>& node, ExecutionContext& context) const
{
execute_children(node, context);
} // execute
const std::vector<Arabica::XPath::MatchExpr<std::string> >& compiled_matches() const { return matches_; }
bool has_name() const { return !name_.second.empty(); }
const std::pair<std::string, std::string>& name() const { return name_; }
const std::pair<std::string, std::string>& mode() const { return mode_; }
private:
std::vector<Arabica::XPath::MatchExpr<std::string> > matches_;
std::pair<std::string, std::string> name_;
std::pair<std::string, std::string> mode_;
}; // class Template
} // namespace XSLT
} // namespace Arabica
#endif // ARABICA_XSLT_TEMPLATE_HPP