mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
//+-------------------------------------------------------------------
|
|
//
|
|
// File: qicf.hxx
|
|
//
|
|
// Contents: test class factory object implementation
|
|
//
|
|
// Classes: CQIClassFactory
|
|
//
|
|
// Functions: None
|
|
//
|
|
// History: 23-Nov-92 Rickhi Created
|
|
//
|
|
//--------------------------------------------------------------------
|
|
#ifndef __CQICLASSFACTORY__
|
|
#define __CQICLASSFACTORY__
|
|
|
|
#include <win4p.hxx>
|
|
#include <otrack.hxx> // object tracking
|
|
#include <cqi.hxx> // class code
|
|
|
|
//+-------------------------------------------------------------------
|
|
//
|
|
// Class: CQIClassFactory
|
|
//
|
|
// Purpose: test class factory object implementation
|
|
//
|
|
// History: 23-Nov-92 Rickhi Created
|
|
//
|
|
//--------------------------------------------------------------------
|
|
class CQIClassFactory : INHERIT_TRACKING,
|
|
public IClassFactory
|
|
{
|
|
public:
|
|
// Constructor & Destructor
|
|
CQIClassFactory(REFCLSID rclsid);
|
|
|
|
// IUnknown methods
|
|
STDMETHOD(QueryInterface)(REFIID riid, void **ppUnk);
|
|
DECLARE_STD_REFCOUNTING;
|
|
|
|
|
|
// IClassFactory methods
|
|
STDMETHOD(CreateInstance)(IUnknown *punkOuter,
|
|
REFIID riid,
|
|
void **ppunkObject);
|
|
|
|
STDMETHOD(LockServer)(BOOL fLock);
|
|
|
|
private:
|
|
~CQIClassFactory(void);
|
|
|
|
CLSID _clsid;
|
|
};
|
|
|
|
#endif // __CQICLASSFACTORY__
|