Adds support to hexDecode transformation

This commit is contained in:
Felipe Zimmerle
2015-10-23 14:01:12 -03:00
parent 93c3bc804e
commit 9932478705
3 changed files with 14 additions and 10 deletions

View File

@@ -80,7 +80,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(compress_whitespace) { return new CompressWhitespace(a); }
IF_MATCH(cssDecode) { return new CssDecode(a); }
IF_MATCH(escape_seq_decode) { return new EscapeSeqDecode(a); }
IF_MATCH(hex_decode) { return new HexDecode(a); }
IF_MATCH(hexDecode) { return new HexDecode(a); }
IF_MATCH(hexEncode) { return new HexEncode(a); }
IF_MATCH(htmlEntityDecode) { return new HtmlEntityDecode(a); }
IF_MATCH(jsDecode) { return new JsDecode(a); }