/usr/include/ui-gxmlcpp/XSLTransTree.hpp is in libui-gxmlcpp-dev 1.4.4-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | /**
* @file
* @version @$Id$
* @author
* ui-gxmlcpp: C++ wrapper for Gnome libxml2/libxsl.
* Copyright (C) Schlund+Partner AG 2002-2004.
* Licensed under the GNU Lesser General Public License (LGPL). See
* @ref License, or the file COPYING in distribution.
*/
#ifndef UI_GXML_XSLTRANSTREE_HPP
#define UI_GXML_XSLTRANSTREE_HPP
// STDC++
#include <string>
// C++ Libraries
#include <ui-utilcpp/Text.hpp>
#include <ui-gxmlcpp/Tree.hpp>
#include <ui-gxmlcpp/XSLTree.hpp>
// Include compat w/o warnings or changing external UI_GXMLCPP_IGNORE_DEPRECATED
#ifdef UI_GXMLCPP_IGNORE_DEPRECATED
#include <ui-gxmlcpp/XMLTree.hpp>
#else
#define UI_GXMLCPP_IGNORE_DEPRECATED
#include <ui-gxmlcpp/XMLTree.hpp>
#undef UI_GXMLCPP_IGNORE_DEPRECATED
#endif
namespace UI {
namespace GXML {
/** @brief XSL translation result tree. */
class XSLTransTree: public Tree
{
public:
/** @brief Error codes for exceptions. */
enum ErrorCode
{
Mem_ = 0,
Apply_
};
/** @brief Exceptions for this class. */
typedef CodeException<ErrorCode> Exception;
/** @brief Parameter abstraction for xsl translations. */
class Params: private UI::Util::CStrArray
{
public:
/** @brief Add a named parameter. */
Params & add(std::string const & name, std::string const & value);
using CStrArray::get;
};
/** @brief Constructor. */
XSLTransTree(XSLTree const & xslTree, Tree const & tree, Params const & params=Params());
/** @brief Compatibility constructor for old XMLTree. */
XSLTransTree(XSLTree const & style, XMLTree const * const tree, Params const & params=Params());
/** @brief See XSLTree::getOutputEncoding(). */
std::string getOutputEncoding() const;
/** @brief XSLTransTree serializer. */
class Dump
{
public:
/** @brief Constructor. */
Dump(XSLTransTree const & xslTransTree);
~Dump();
/** @brief See XSLTree::getOutputEncoding(). */
std::string getEncoding() const;
/** @name Get serialized content.
* @{ */
char const * getC() const;
std::string get() const;
int getSize() const;
/** @} */
private:
XSLTransTree const * const xslTransTree_;
xmlChar * buf_;
int size_;
};
protected:
xsltStylesheet * getStylesheet() const;
private:
XSLTree const * const xslTree_;
};
}}
#endif
|