How to override C++/CLI functions ?
Override C++/CLI functions
925 Views Asked by user3042916 At
2
There are 2 best solutions below
0

Looking at the git of OpenCV, to be exact defs.h, l. 503-506, you can find:
CV_INLINE int cvRound( int value )
{
return value;
}
So the function is already overloaded for integers and it does not convert int
to double
implicitly.
Here is the example of override OnPaint function in Picturebox. If you want to override the function, go to MSDN to understand the function which can override. Those function which can be override often follow the name of "OnXXXX( OOOOeventarg^ e)"