I have a function that I want to declare and use in a typical C++ style within a class.
Hypothetical example definition from .mm file:
float MyClass::getRectArea(float width, float height){
return width*height;
}
How can I declare this function in the objective-C class header/.h file?
@interface MyClass
//???
@end