And if you want to know for the general case, you want to pass the parameter by reference (add the & before the parameter name) so that you don’t ask the compiler to build a copy and work on the copy. That’s usually a bad idea esp. when the instance deals with hardware resources,
void someSetup(MyClass& classInstance) {
…
}