Adds support to Utf8ToUnicode transformation

Issue #974
This commit is contained in:
Felipe Zimmerle
2016-05-25 18:19:36 -03:00
parent d70f08d01e
commit 2b056485d0
4 changed files with 275 additions and 20 deletions

View File

@@ -113,7 +113,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(urlDecode) { return new UrlDecode(a); }
IF_MATCH(urlDecodeUni) { return new UrlDecodeUni(a); }
IF_MATCH(urlEncode) { return new UrlEncode(a); }
IF_MATCH(utf8_to_unicode) { return new Utf8Unicode(a); }
IF_MATCH(utf8ToUnicode) { return new Utf8ToUnicode(a); }
return new Transformation(a);
}