Adds support to the cmd_line transformation

Details on #965
This commit is contained in:
Felipe Zimmerle
2016-05-05 15:47:21 -03:00
parent d0e0002283
commit c85529158e
2 changed files with 49 additions and 13 deletions

View File

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