Adds support to base64DecodeExt transformation

More info on #964
This commit is contained in:
Felipe Zimmerle
2016-05-24 15:42:32 -03:00
parent 056753d57a
commit bf4a9d7633
5 changed files with 156 additions and 22 deletions

View File

@@ -30,7 +30,8 @@ namespace transformations {
class Base64DecodeExt : public Transformation {
public:
explicit Base64DecodeExt(std::string action);
explicit Base64DecodeExt(std::string action) : Transformation(action) { }
std::string evaluate(std::string exp,
Transaction *transaction) override;
};