Esempio n. 1
0
    public CompileTool(OutPutCallBack callBack, OutPutCallBack errorCallBack)
    {
        this.callBack      = callBack;
        this.errorCallBack = errorCallBack;

        m_cmd = new CmdService(OutPut, errorCallBack);
    }
Esempio n. 2
0
        public ChannelTool(OutPutCallBack callBack, OutPutCallBack errorCallBack)
        {
            this.callBack      = callBack;
            this.errorCallBack = errorCallBack;

            compileTool = new CompileTool(callBack, errorCallBack);
        }
Esempio n. 3
0
 public CmdService(OutPutCallBack callBack, OutPutCallBack errorCallBack)
 {
     this.callBack      = callBack;
     this.errorCallBack = errorCallBack;
 }
Esempio n. 4
0
 public CompileTool(OutPutCallBack callBack, OutPutCallBack errorCallBack)
 {
     this.callBack      = callBack;
     this.errorCallBack = errorCallBack;
 }
 public ChannelTool(OutPutCallBack callBack, OutPutCallBack errorCallBack)
 {
     this.callBack      = callBack;
     this.errorCallBack = errorCallBack;
 }