#include "Generator.h" #include "FileSystemUtilities.h" #include Generator::Generator(const std::vector& aTemp) : Template(aTemp), State(Unchecked) { } Generator::Generator(const Generator& other) : Template(other.Template), Input(other.Input), Output(other.Output), State(Unchecked) { } ProcessController* Generator::createNextTask() { if (State != Unchecked) return 0; State = Building; std::vector Args; for (unsigned int i=1; i