Leaked source code of windows server 2003
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.

37 lines
1010 B

  1. //---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995
  5. //
  6. // File: cpobjcf.hxx
  7. //
  8. // Contents: Windows NT 4.0 Property Attribute Object Class Factory
  9. //
  10. // CIISPropertyAttributeCF::CreateInstance
  11. //
  12. // History: 21-01-98 sophiac Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef _CPOBJCF_HXX_
  16. #define _CPOBJCF_HXX
  17. //+------------------------------------------------------------------------
  18. //
  19. // Class: CIISPropertyAttributeCF (tag)
  20. //
  21. // Purpose: Class factory for standard Domain object.
  22. //
  23. // Interface: IClassFactory
  24. //
  25. //-------------------------------------------------------------------------
  26. class CIISPropertyAttributeCF : public StdClassFactory
  27. {
  28. public:
  29. STDMETHOD(CreateInstance)(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv);
  30. };
  31. #endif // #ifndef _CPOBJCF_HXX_