You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes code has to be removed. This is how you do it without you inform other.
In the header file wrap the method signature into the OF_DEPRECATED_MSG("message", signature)-makro. You should also hint at any replacement functions, e.g.
OF_DEPRECATED_MSG("ofxFoo::initFoo(int bar) is deprecated, use foo(int bar) instead.", void ofxFoo::initFoo(int bar));
Remove the actual implementation code.
Add the "@deprecated" tag to the Doxygen documentation.