selGraph method

bool selGraph(
  1. int index
)

Implementation

bool selGraph( int index ){
	if( (index < 0) || (index >= _infoNum) ){
		return false;
	}
	_curIndex = index;
	return true;
}