Adds support to the transformation normalisePathWin

This commit is contained in:
Felipe Zimmerle
2015-08-05 17:32:15 -03:00
parent 1353403c93
commit 62d004cf04
5 changed files with 187 additions and 13 deletions

View File

@@ -88,7 +88,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(md5) { return new Md5(a); }
IF_MATCH(none) { return new None(a); }
IF_MATCH(normalise_path) { return new NormalisePath(a); }
IF_MATCH(normalise_path_win) { return new NormalisePathWin(a); }
IF_MATCH(normalisePathWin) { return new NormalisePathWin(a); }
IF_MATCH(parity_even_7bit) { return new ParityEven7bit(a); }
IF_MATCH(parity_odd_7bit) { return new ParityOdd7bit(a); }
IF_MATCH(parity_zero_7bit) { return new ParityZero7bit(a); }