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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      CRUCAR.H
  3.   Summary:   Include file for the aggregatable COLicCruiseCar COM object
  4.              class.
  5.              CRUCAR showcases the construction of the COLicCruiseCar COM
  6.              object class with the IUnknown, ICar, and ICruise interfaces.
  7.              This is done through Aggregation reuse of a COCar COM
  8.              object (specifically providing its ICar interface features).
  9.              This multiple interface COM Object Class is achieved via
  10.              the technique of nested classes: the implementation of the
  11.              ICar and ICruise interfaces are nested inside of the
  12.              COLicCruiseCar COM object class.
  13.              For a comprehensive tutorial code tour of this module's
  14.              contents and offerings see the tutorial LICSERVE.HTM
  15.              file. For more specific technical details on the internal
  16.              workings see the comments dispersed throughout the module's
  17.              source code.
  18.   Classes:   COLicCruiseCar.
  19.   Functions: .
  20.   Origin:    10-5-95: atrent - Editor-inheritance from CRUCAR.H in
  21.                the DLLSERVE Tutorial Code Sample.
  22. ----------------------------------------------------------------------------
  23.   This file is part of the Microsoft COM Tutorial Code Samples.
  24.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  25.   This source code is intended only as a supplement to Microsoft
  26.   Development Tools and/or on-line documentation.  See these other
  27.   materials for detailed information regarding Microsoft code samples.
  28.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  29.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  30.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  31.   PARTICULAR PURPOSE.
  32. ==========================================================================+*/
  33. #if !defined(CRUCAR_H)
  34. #define CRUCAR_H
  35. #ifdef __cplusplus
  36. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  37.   ObjectClass: COLicCruiseCar
  38.   Summary:     COM Object Class for COLicCruiseCar COM Objects.  COM
  39.                objects of this class augment COCar COM objects (which
  40.                offer ICar interface features of Shift, Clutch, Speed, and
  41.                Steer) with ICruise interface features (Engage and Adjust).
  42.                This COLicCruiseCar COM object class is constructed by
  43.                aggregation reuse of the COCar COM object class.  The
  44.                mulitple interfaces on this COM object class are
  45.                constructed via the nested interface classes technique.
  46.   Interfaces:  IUnknown
  47.                  Standard interface providing COM object features.
  48.                ICar
  49.                  Basic Car operation features.
  50.                ICruise
  51.                  Cruise control features.
  52.   Aggregation: Yes, COLicCruiseCar COM objects are aggregatable by passing
  53.                a non-NULL pUnkOuter IUnknown pointer into the constructor.
  54. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  55. class COLicCruiseCar : public IUnknown
  56. {
  57.   public:
  58.     // Main Object Constructor & Destructor.
  59.     COLicCruiseCar(IUnknown* pUnkOuter, CServer* pServer);
  60.     ~COLicCruiseCar(void);
  61.     // A general method for initializing a newly created COLicCruiseCar.
  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.   private:
  68.     // We declare nested class interface implementations here.
  69.     // We implement the ICruise interface (ofcourse) in this COLicCruiseCar
  70.     // COM object class.  This is the interface that we are using as an
  71.     // augmentation to the existing COCar COM object class.
  72.     class CImpICruise : public ICruise
  73.     {
  74.       public:
  75.         // Interface Implementation Constructor & Destructor.
  76.         CImpICruise(COLicCruiseCar* pBackObj, IUnknown* pUnkOuter);
  77.         ~CImpICruise(void);
  78.         // IUnknown methods.
  79.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  80.         STDMETHODIMP_(ULONG) AddRef(void);
  81.         STDMETHODIMP_(ULONG) Release(void);
  82.         // ICruise methods.
  83.         STDMETHODIMP Engage(BOOL bOnOff);
  84.         STDMETHODIMP Adjust(BOOL bUpDown);
  85.       private:
  86.         // Data private to this interface implementation of ICruise.
  87.         ULONG            m_cRefI;       // Interface Ref Count (debugging).
  88.         COLicCruiseCar*  m_pBackObj;    // Parent Object back pointer.
  89.         IUnknown*        m_pUnkOuter;   // Outer unknown for Delegation.
  90.     };
  91.     // Make the otherwise private and nested ICar interface implementation
  92.     // a friend to COM object instantiations of this selfsame COLicCruiseCar
  93.     // COM object class.
  94.     friend CImpICruise;
  95.     // Private data of COLicCruiseCar COM objects.
  96.     // Nested ICruise implementation instantiation.  This ICruise interface
  97.     // is implemented inside this COLicCruiseCar object as a native
  98.     // interface.
  99.     CImpICruise     m_ImpICruise;
  100.     // Main Object reference count.
  101.     ULONG           m_cRefs;
  102.     // Outer unknown (aggregation & delegation). Used when this
  103.     // COLicCruiseCar object is being aggregated.  Otherwise it is used for
  104.     // delegation if this object is reused via containment.
  105.     IUnknown*       m_pUnkOuter;
  106.     // We need to save the IUnknown interface pointer on the COCar
  107.     // object that we aggregate.  We use this when we need to delegate
  108.     // IUnknown calls to this aggregated inner object.
  109.     IUnknown*       m_pUnkCar;
  110.     // Pointer to this component server's control object.
  111.     CServer*        m_pServer;
  112. };
  113. typedef COLicCruiseCar* PCOLicCruiseCar;
  114. #endif // __cplusplus
  115. #endif // CRUCAR_H