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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      UTILCAR.H
  3.   Summary:   Include file for the aggregatable COUtilityCar COM object class.
  4.              UTILCAR showcases the construction of the COUtilityCar COM
  5.              object class with the IUnknown, ICar, and IUtility
  6.              interfaces. This is done through Containment reuse of COCar's
  7.              ICar interface features.
  8.              This multiple interface COM Object Class is achieved via the
  9.              technique of nested classes: the implementation of the ICar
  10.              and IUtility interfaces are nested inside of the COUtilityCar
  11.              COM object class.
  12.              For a comprehensive tutorial code tour of this module's
  13.              contents and offerings see the tutorial APTSERVE.HTM
  14.              file. For more specific technical details on the internal
  15.              workings see the comments dispersed throughout the module's
  16.              source code.
  17.   Classes:   COUtilityCar
  18.   Functions: .
  19.   Origin:    3-20-96: atrent - Editor-inheritance from UTILCAR.H in
  20.                the LOCSERVE Tutorial Code Sample.
  21. ----------------------------------------------------------------------------
  22.   This file is part of the Microsoft COM Tutorial Code Samples.
  23.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  24.   This source code is intended only as a supplement to Microsoft
  25.   Development Tools and/or on-line documentation.  See these other
  26.   materials for detailed information regarding Microsoft code samples.
  27.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  28.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  29.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  30.   PARTICULAR PURPOSE.
  31. ==========================================================================+*/
  32. #if !defined(UTILCAR_H)
  33. #define UTILCAR_H
  34. #ifdef __cplusplus
  35. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  36.   ObjectClass: COUtilityCar
  37.   Summary:     COM Object Class for COUtilityCar COM Objects.  COM objects
  38.                of this class augment COCar COM objects (which offer ICar
  39.                interface features of Shift, Clutch, Speed, and Steer) with
  40.                IUtility interface features (Offroad and Winch).  This
  41.                COUtilityCar COM object class is constructed by containment
  42.                reuse of the COCar COM object class.  The mulitple
  43.                interfaces on this COM object class are constructed via
  44.                the nested interface classes technique.
  45.   Interfaces:  IUnknown
  46.                  Standard interface providing COM object features.
  47.                ICar
  48.                  Basic Car operation features.
  49.                IUtility
  50.                  Sport-utility vehicle offroad features.
  51.   Aggregation: Yes, COUtilityCar COM objects are aggregatable by passing
  52.                a non-NULL pUnkOuter IUnknown pointer into the constructor.
  53. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  54. class COUtilityCar : public IUnknown
  55. {
  56.   public:
  57.     // Main Object Constructor & Destructor.
  58.     COUtilityCar(IUnknown* pUnkOuter, CServer* pServer);
  59.     ~COUtilityCar(void);
  60.     // A general method for initializing a newly created COUtilityCar.
  61.     HRESULT Init(void);
  62.     // IUnknown methods. Main object, non-delegating.
  63.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  64.     STDMETHODIMP_(ULONG) AddRef(void);
  65.     STDMETHODIMP_(ULONG) Release(void);
  66.     // We get this ICar interface pointer via containment reuse of the
  67.     // ICar interface in an instantiated COCar.
  68.     ICar*           m_pICar;
  69.   private:
  70.     // We show nested interface class implementations here.
  71.     // We implement the basic ICar interface in this COUtilityCar
  72.     // COM object class.
  73.     class CImpICar : public ICar
  74.     {
  75.       public:
  76.         // Interface Implementation Constructor & Destructor.
  77.         CImpICar(COUtilityCar* pBackObj, IUnknown* pUnkOuter);
  78.         ~CImpICar(void);
  79.         // IUnknown methods.
  80.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  81.         STDMETHODIMP_(ULONG) AddRef(void);
  82.         STDMETHODIMP_(ULONG) Release(void);
  83.         // ICar methods.
  84.         STDMETHODIMP Shift(short nGear);
  85.         STDMETHODIMP Clutch(short nEngaged);
  86.         STDMETHODIMP Speed(short nMph);
  87.         STDMETHODIMP Steer(short nAngle);
  88.       private:
  89.         // Data private to this COUtilityCar interface implementation of ICar.
  90.         ULONG         m_cRefI;       // Interface Ref Count (for debugging).
  91.         COUtilityCar* m_pBackObj;    // Parent Object back pointer.
  92.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  93.     };
  94.     // We implement the IUtility interface (ofcourse) in this COUtilityCar
  95.     // COM object class.  This is the native interface that we are using
  96.     // as an augmentation to the existing COCar COM object class.
  97.     class CImpIUtility : public IUtility
  98.     {
  99.       public:
  100.         // Interface Implementation Constructor & Destructor.
  101.         CImpIUtility(COUtilityCar* pBackObj, IUnknown* pUnkOuter);
  102.         ~CImpIUtility(void);
  103.         // IUnknown methods.
  104.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  105.         STDMETHODIMP_(ULONG) AddRef(void);
  106.         STDMETHODIMP_(ULONG) Release(void);
  107.         // IUtility methods.
  108.         STDMETHODIMP Offroad(short nGear);
  109.         STDMETHODIMP Winch(short nRpm);
  110.       private:
  111.         // Data private to this interface implementation of IUtility.
  112.         ULONG         m_cRefI;       // Interface Ref Count (for debugging).
  113.         COUtilityCar* m_pBackObj;    // Parent Object back pointer.
  114.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  115.     };
  116.     // Make the otherwise private and nested ICar and IUtility interface
  117.     // implementations a friend to COM object instantiations of this
  118.     // selfsame COUtilityCar COM object class.
  119.     friend CImpICar;
  120.     friend CImpIUtility;
  121.     // Private data of COUtilityCar COM objects.
  122.     // Nested ICar implementation instantiation.
  123.     CImpICar        m_ImpICar;
  124.     // Nested IUtility implementation instantiation.  This IUtility interface
  125.     // is implemented inside this COUtilityCar object as a native interface.
  126.     CImpIUtility    m_ImpIUtility;
  127.     // Main Object reference count.
  128.     ULONG           m_cRefs;
  129.     // Outer unknown (aggregation & delegation). Used when this COCruiseCar
  130.     // object is being aggregated.  Otherwise it is used for delegation
  131.     // if this object is reused via containment.
  132.     IUnknown*       m_pUnkOuter;
  133.     // Pointer to this component server's control object.
  134.     CServer*        m_pServer;
  135. };
  136. typedef COUtilityCar* PCOUtilityCar;
  137. #endif // __cplusplus
  138. #endif // UTILCAR_H