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