dup method

ClipLine dup()

Implementation

ClipLine dup(){
	ClipLine dst = ClipLine();

	_get = _top;
	while( _get != null ){
		dst.regLine( _get! );
		_get = _get!._next;
	}

	dst._nextNum = _nextNum;

	return dst;
}