public abstract class Wind2Link
{
	public abstract boolean Connect();
	public abstract String getLine();
	public abstract boolean Disconnect();
}
