This dummy interfaces should be used as base class for all the native graphics interfaces.
You can find more information in comments below.
class INativeGraphics
{
public:
virtual int getMajorVersion() = 0; // Return major part of version number
virtual int getMinorVersion() = 0; // Return major part of version number
virtual void Release() = 0; // Release native graphics interface
};
Namespace: | nitisa |
Include: | Nitisa/Interfaces/INativeGraphics.h |