set method

ParamBoolean set(
  1. bool val
)

Implementation

ParamBoolean set( bool val ){
	_val = (val == true);
	return this;
}