I have a class method with a signature like this:
// someheader.h
class Blah {
...
void DoSomeWork(class Screen& p);
..
};
The Screen class however is supposed to turn into a template now, something like...
template <int width, int height>
class Screen {
...
So my question is, how should I change the method's prototype in someheader.h?