[FRAMEDYN]

* Actually use the right declaration. Fixes MSVC builds.

svn path=/trunk/; revision=65851
This commit is contained in:
David Quintana 2014-12-27 14:04:32 +00:00
parent f89f1cdf72
commit 1db4f01f36

View file

@ -8,11 +8,11 @@
class Provider class Provider
{ {
public: protected:
void Flush(); virtual void Flush();
HRESULT ValidateDeletionFlags(long lFlags); virtual HRESULT ValidateDeletionFlags(long lFlags);
HRESULT ValidateMethodFlags(long lFlags); virtual HRESULT ValidateMethodFlags(long lFlags);
HRESULT ValidateQueryFlags(long lFlags); virtual HRESULT ValidateQueryFlags(long lFlags);
}; };
#endif #endif