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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      UTCRUCAR.H
  3.   Summary:   Include file for the aggregatable COUtilityCruiseCar COM
  4.              object class.
  5.              UTCRUCAR showcases the construction of the COUtilityCruiseCar
  6.              COM object class with the IUnknown, ICar, ICruise, and
  7.              IUtility interfaces.  This is done through Containment reuse
  8.              of a COCruiseCar COM object (specifically providing its ICar
  9.              and ICruise interface features).  COUtilityCruiseCar adds its
  10.              own native implementation of the IUtility interface.  The
  11.              contained CruiseCar object is implemented in an outside
  12.              LOCSERVE.EXE local server.
  13.              This multiple interface COM Object Class is achieved via
  14.              the technique of nested classes: the implementation of the
  15.              IUtility interface is nested inside of the COUtilityCruiseCar
  16.              COM object class.
  17.              For a comprehensive tutorial code tour of this module's
  18.              contents and offerings see the accompanying LOCCLIEN.TXT
  19.              file.  For more specific technical details on the internal
  20.              workings see the comments dispersed throughout the
  21.              module's source code.
  22.   Classes:   COUtilityCruiseCar.
  23.   Functions: .
  24.   Origin:    11-20-95: atrent - Editor inheritance from DLLCLIEN source.
  25. ----------------------------------------------------------------------------
  26.   This file is part of the Microsoft COM Tutorial Code Samples.
  27.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  28.   This source code is intended only as a supplement to Microsoft
  29.   Development Tools and/or on-line documentation.  See these other
  30.   materials for detailed information regarding Microsoft code samples.
  31.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  32.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  33.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  34.   PARTICULAR PURPOSE.
  35. ==========================================================================+*/
  36. #if !defined(UTCRUCAR_H)
  37. #define UTCRUCAR_H
  38. #ifdef __cplusplus
  39. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  40.   ObjectClass: COUtilityCruiseCar
  41.   Summary:     COM Object Class for COUtilityCruiseCar COM Objects.
  42.                COM objects of this class augment COCruiseCar COM objects
  43.                with the IUtility interface features of Offroad and Winch.
  44.                COCruiseCar is reused to offer this COUtilityCruiseCar COM
  45.                Object the ICar interface features of Shift, Clutch, Speed,
  46.                Steer and the ICruise interface features of Engage and
  47.                Adjust.  This COUtilityCruiseCar COM object class is
  48.                constructed by containment reuse of the COCruiseCar COM
  49.                object class.  The mulitple interfaces on this COM object
  50.                class are constructed via the nested class interfaces
  51.                technique.
  52.   Interfaces:  IUnknown
  53.                  Standard interface providing COM object features.
  54.                ICar
  55.                  Basic car features.
  56.                ICruise
  57.                  Cruise control system features.
  58.                IUtility
  59.                  Sport-utility Car operation features.  Implemented in
  60.                  this COM object.
  61.   Aggregation: Yes, COUtilityCruiseCar COM objects are aggregatable by
  62.                passing a non-NULL pUnkOuter IUnknown pointer into
  63.                the constructor.
  64. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  65. class COUtilityCruiseCar : public IUnknown
  66. {
  67.   public:
  68.     // Main Object Constructor & Destructor.
  69.     COUtilityCruiseCar(IUnknown* pUnkOuter);
  70.     ~COUtilityCruiseCar(void);
  71.     // A general method for initializing a newly created UtilityCruiseCar.
  72.     HRESULT Init(void);
  73.     // IUnknown members. Main object, non-delegating.
  74.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  75.     STDMETHODIMP_(ULONG) AddRef(void);
  76.     STDMETHODIMP_(ULONG) Release(void);
  77.     // We get this ICar interface pointer via containment reuse of the
  78.     // ICar interface in an instantiated COCruiseCar.
  79.     ICar*                m_pICar;
  80.     // We get this ICruise interface pointer via containment reuse of the
  81.     // ICruise interface in an instantiated COCruisecar.
  82.     ICruise*             m_pICruise;
  83.   private:
  84.     // We declare nested class interface implementations here.
  85.     // We implement the ICar interface in this COUtilityCruiseCar COM
  86.     // object class.  This is a delegating interface for the one
  87.     // in the contained COCruiseCar COM object.
  88.     class CImpICar : public ICar
  89.     {
  90.       public:
  91.         // Interface Implementation Constructor & Destructor.
  92.         CImpICar(COUtilityCruiseCar* pBackObj, IUnknown* pUnkOuter);
  93.         ~CImpICar(void);
  94.         // IUnknown methods.
  95.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  96.         STDMETHODIMP_(ULONG) AddRef(void);
  97.         STDMETHODIMP_(ULONG) Release(void);
  98.         // ICar methods.
  99.         STDMETHODIMP         Shift(short nGear);
  100.         STDMETHODIMP         Clutch(short nEngaged);
  101.         STDMETHODIMP         Speed(short nMph);
  102.         STDMETHODIMP         Steer(short nAngle);
  103.       private:
  104.         // Data private to this COUtilityCar interface implementation of ICar.
  105.         ULONG                m_cRefI;     // Interface Ref Count (debugging).
  106.         COUtilityCruiseCar*  m_pBackObj;  // Parent Object back pointer.
  107.         IUnknown*            m_pUnkOuter; // Outer unknown for Delegation.
  108.     };
  109.     // We implement the ICruise interface in this COUtilityCruiseCar COM
  110.     // object class.  This ICruise implementation is a delegating
  111.     // interface for the one provided in the contained COCruiseCar COM
  112.     // object.
  113.     class CImpICruise : public ICruise
  114.     {
  115.       public:
  116.         // Interface Implementation Constructor & Destructor.
  117.         CImpICruise(COUtilityCruiseCar* pBackObj, IUnknown* pUnkOuter);
  118.         ~CImpICruise(void);
  119.         // IUnknown methods.
  120.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  121.         STDMETHODIMP_(ULONG) AddRef(void);
  122.         STDMETHODIMP_(ULONG) Release(void);
  123.         // ICruise methods.
  124.         STDMETHODIMP Engage(BOOL bOnOff);
  125.         STDMETHODIMP Adjust(BOOL bUpDown);
  126.       private:
  127.         // Data private to this interface implementation of ICruise.
  128.         ULONG                m_cRefI;     // Interface Ref Count (debugging).
  129.         COUtilityCruiseCar*  m_pBackObj;  // Parent Object back pointer.
  130.         IUnknown*            m_pUnkOuter; // Outer unknown for Delegation.
  131.     };
  132.     // We implement the IUtility interface in this COUtilityCruiseCar COM
  133.     // object class.  This is the native interface that we are using as an
  134.     // augmentation to the existing COCruiseCar COM object class.
  135.     class CImpIUtility : public IUtility
  136.     {
  137.       public:
  138.         // Interface Implementation Constructor & Destructor.
  139.         CImpIUtility(COUtilityCruiseCar* pBackObj, IUnknown* pUnkOuter);
  140.         ~CImpIUtility(void);
  141.         // IUnknown members.
  142.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  143.         STDMETHODIMP_(ULONG) AddRef(void);
  144.         STDMETHODIMP_(ULONG) Release(void);
  145.         // IUtility members.
  146.         STDMETHODIMP Offroad(short nGear);
  147.         STDMETHODIMP Winch(short nRpm);
  148.       private:
  149.         // Data private to this interface implementation of IUtility.
  150.         ULONG                m_cRefI;     // Interface Ref Count (debugging).
  151.         COUtilityCruiseCar*  m_pBackObj;  // Parent Object back pointer.
  152.         IUnknown*            m_pUnkOuter; // Outer unknown for Delegation.
  153.     };
  154.     // Make the otherwise private and nested IUtility, ICruise, and ICar
  155.     // interface implementations friend instantiations of this class.
  156.     friend CImpICar;
  157.     friend CImpICruise;
  158.     friend CImpIUtility;
  159.     // Private data of COUtilityCruiseCar COM objects.
  160.     // Nested ICar implementation instantiation.
  161.     CImpICar        m_ImpICar;
  162.     // Nested ICruise implementation instantiation.
  163.     CImpICruise     m_ImpICruise;
  164.     // Nested IUtility implementation instantiation.  This IUtility
  165.     // interface is implemented inside this COUtilityCruiseCar object
  166.     // as a native interface.
  167.     CImpIUtility    m_ImpIUtility;
  168.     // Main Object reference count.
  169.     ULONG           m_cRefs;
  170.     // Outer unknown (aggregation & delegation). Used when this
  171.     // COUtilityCruiseCar object is being aggregated.
  172.     IUnknown*       m_pUnkOuter;
  173. };
  174. typedef COUtilityCruiseCar* PCOUtilityCruiseCar;
  175. // Here is a prototpye for the UtilityCruiseCar Creation function.
  176. HRESULT CreateUtilityCruiseCar(
  177.           IUnknown* pUnkOuter,
  178.           REFIID riid,
  179.           PPVOID ppv);
  180. #endif // __cplusplus
  181. #endif // UTCRUCAR_H