ABB.Swum.ExternalProcessTagger.ExternalProcessTagger C# (CSharp) Method

ExternalProcessTagger() public method

Creates a new ExternalProcessTagger with the default program path and arguments.
public ExternalProcessTagger ( ) : System
return System
        public ExternalProcessTagger()
        {
//TODO: this should probably read from some central properties file, or similar
//      Furthermore, the ktagger source and executable should be moved into the NLPA solution, so they can be distributed together
            this.ProgramFileName = @"..\..\..\External\pc-parse-20051207\ktagger\Release\ktagger32.exe";
            this.ProgramArguments = @"-x ..\XML.ctl ";
        }

Same methods

ExternalProcessTagger::ExternalProcessTagger ( string programFileName, string programArguments ) : System
ExternalProcessTagger