#include "XSLT.h"

string ProcesorXSLT(string style, string xml)
{
    char **params;
    //xsltStylesheetPtr stylesheet = (xsltStylesheetPtr) style.c_str();
    //xmlDocPtr document = (xmlDocPtr) xml.c_str();
    //xmlDocPtr result = xsltApplyStylesheet(stylesheet, document, (const char **)params);
    return "XSLT";
}