public GuetzliCaller(string guetzliResource, Keks.Keks gui, string instanceId) { gui.logMessage(string.Empty); gui.logMessage("Beginning wrapper construction."); this.guetzliResource = guetzliResource; fullExecutablePath = workingDirectory + instanceId + guetzliResource; this.gui = gui; gui.logMessage("Wrapper construction completed successfully"); }
public GuetzliThread(ProcessStartInfo info, Keks gui, string targetFilePath) { this.info = info; this.gui = gui; this.targetFilePath = targetFilePath; }
public static void CallGuetzli(Keks gui) { GuetzliCaller gc = new GuetzliCaller(GUETZLI_RESOURCE, gui, INSTANCE_ID); gc.Execute(); }