FACTORY.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:5k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      FACTORY.H
  3.   Summary:   Include file for the class factory COM object: CFBall. This
  4.              constitutes the FRESERVE server's class factory for this COM
  5.              component.
  6.              The multiple interface COM Object Classe is achieved via
  7.              the technique of nested classes: the implementation of the
  8.              IClassFactory interface is nested inside of the class
  9.              factory COM object class.
  10.              For a comprehensive tutorial code tour of this module's
  11.              contents and offerings see the tutorial FRESERVE.HTM file.
  12.              For more specific technical details on the internal workings
  13.              see the comments dispersed throughout the module's source code.
  14.   Classes:   CFBall.
  15.   Functions: .
  16.   Origin:    4-5-96: atrent - Editor-inheritance from FACTORY.H in
  17.                the DLLSERVE Tutorial Code Sample.
  18. ----------------------------------------------------------------------------
  19.   This file is part of the Microsoft COM Tutorial Code Samples.
  20.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  21.   This source code is intended only as a supplement to Microsoft
  22.   Development Tools and/or on-line documentation.  See these other
  23.   materials for detailed information regarding Microsoft code samples.
  24.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  25.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  26.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  27.   PARTICULAR PURPOSE.
  28. ==========================================================================+*/
  29. #if !defined(FACTORY_H)
  30. #define FACTORY_H
  31. #ifdef __cplusplus
  32. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  33.   ObjectClass: CFBall
  34.   Summary:     Class Factory COM Object Class for Ball COM components.
  35.                Used to manufacture COBall COM objects.  The mulitple
  36.                interfaces on this COM object class are constructed via
  37.                the nested interface classes technique.
  38.   Interfaces:  IUnknown
  39.                  Standard interface providing COM object features.
  40.                IClassFactory
  41.                  Standard interface providing COM Class Factory features.
  42.   Aggregation: Yes, CFBall COM objects are aggregatable by
  43.                passing a non-NULL pUnkOuter IUnknown pointer into the
  44.                constructor.
  45. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  46. class CFBall : public IUnknown, public CThreaded
  47. {
  48.   public:
  49.     // Main Object Constructor & Destructor.
  50.     CFBall(IUnknown* pUnkOuter, CServer* pServer);
  51.     ~CFBall(void);
  52.     // IUnknown methods. Main object, non-delegating.
  53.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  54.     STDMETHODIMP_(ULONG) AddRef(void);
  55.     STDMETHODIMP_(ULONG) Release(void);
  56.     // We declare nested class interface implementations here.
  57.     // We implement the IClassFactory interface (ofcourse) in this class
  58.     // factory COM object class.
  59.     class CImpIClassFactory : public IClassFactory, public CThreaded
  60.     {
  61.       public:
  62.         // Interface Implementation Constructor & Destructor.
  63.         CImpIClassFactory(
  64.           CFBall* pBackObj,
  65.           IUnknown* pUnkOuter,
  66.           CServer* pServer);
  67.         ~CImpIClassFactory(void);
  68.         // IUnknown methods.
  69.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  70.         STDMETHODIMP_(ULONG) AddRef(void);
  71.         STDMETHODIMP_(ULONG) Release(void);
  72.         // IClassFactory methods.
  73.         STDMETHODIMP         CreateInstance(IUnknown*, REFIID, PPVOID);
  74.         STDMETHODIMP         LockServer(BOOL);
  75.       private:
  76.         // Data private to this interface implementation of IClassFactory.
  77.         CFBall*       m_pBackObj;    // Parent Object back pointer.
  78.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  79.         CServer*      m_pServer;     // Server's control object.
  80.     };
  81.     // Make the otherwise private and nested IClassFactory interface
  82.     // implementation a friend to COM object instantiations of this
  83.     // selfsame CFBall COM object class.
  84.     friend CImpIClassFactory;
  85.   private:
  86.     // Private data of CFBall COM objects.
  87.     // Nested IClassFactory implementation instantiation.
  88.     CImpIClassFactory m_ImpIClassFactory;
  89.     // Main Object reference count.
  90.     ULONG             m_cRefs;
  91.     // Outer unknown (aggregation & delegation). Used when this
  92.     // CFBall object is being aggregated.  Otherwise it is used
  93.     // for delegation if this object is reused via containment.
  94.     IUnknown*         m_pUnkOuter;
  95.     // Pointer to this component server's control object.
  96.     CServer*          m_pServer;
  97. };
  98. typedef CFBall* PCFBall;
  99. #endif // __cplusplus
  100. #endif // FACTORY_H