blob: 2ca72c38e472004e06e56277c0f992e451811af1 [file] [log] [blame]
/*
*(c) Copyright Rational Software Corporation, 2002
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
* Cygwin Command Factory overrides the regular Command Factory to allow for
* commands to take into account the cygwin environment.
*/
public class CygwinCommandFactory extends CommandFactory {
public MIEnvironmentDirectory createMIEnvironmentDirectory(String[] pathdirs) {
return new CygwinMIEnvironmentDirectory(pathdirs);
}
}