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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      CRUCAR.H
  3.   Summary:   Include file for the aggregatable COCruiseCar COM object class.
  4.              CRUCAR showcases the construction of the COCruiseCar COM
  5.              object class with the IUnknown, ICar, and ICruise interfaces.
  6.              This is done through Aggregation reuse of a COCar COM
  7.              object (specifically providing its ICar 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 ICruise interfaces are nested inside of the
  11.              COCruiseCar COM object class.
  12.              For a comprehensive tutorial code tour of this module's
  13.              contents and offerings see the tutorial LOCSERVE.HTM file.
  14.              For more specific technical details on the internal workings
  15.              see the comments dispersed throughout the module's source code.
  16.   Classes:   COCruiseCar.
  17.   Functions: .
  18.   Origin:    11-14-95: atrent - Editor-inheritance from CRUCAR.H in
  19.                the DLLSERVE Tutorial Code Sample.
  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(CRUCAR_H)
  32. #define CRUCAR_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: COCruiseCar
  36.   Summary:     COM Object Class for COCruiseCar COM Objects.  COM objects
  37.                of this class augment COCar COM objects (which offer ICar
  38.                interface features of Shift, Clutch, Speed, and Steer) with
  39.                ICruise interface features (Engage and Adjust).  This
  40.                COCruiseCar COM object class is constructed by aggregation
  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.                ICruise
  49.                  Cruise control features.
  50.   Aggregation: Yes, COCruiseCar 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 COCruiseCar : public IUnknown
  54. {
  55.   public:
  56.     // Main Object Constructor & Destructor.
  57.     COCruiseCar(IUnknown* pUnkOuter, CServer* pServer);
  58.     ~COCruiseCar(void);
  59.     // A general method for initializing a newly created COCruiseCar.
  60.     HRESULT Init(void);
  61.     // IUnknown methods. Main object, non-delegating.
  62.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  63.     STDMETHODIMP_(ULONG) AddRef(void);
  64.     STDMETHODIMP_(ULONG) Release(void);
  65.   private:
  66.     // We declare nested class interface implementations here.
  67.     // We implement the ICruise interface (of-course) in this COCruiseCar
  68.     // COM object class.  This is the interface that we are using as an
  69.     // augmentation to the existing COCar COM object class.
  70.     class CImpICruise : public ICruise
  71.     {
  72.       public:
  73.         // Interface Implementation Constructor & Destructor.
  74.         CImpICruise(COCruiseCar* pBackObj, IUnknown* pUnkOuter);
  75.         ~CImpICruise(void);
  76.         // IUnknown methods.
  77.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  78.         STDMETHODIMP_(ULONG) AddRef(void);
  79.         STDMETHODIMP_(ULONG) Release(void);
  80.         // ICruise methods.
  81.         STDMETHODIMP Engage(BOOL bOnOff);
  82.         STDMETHODIMP Adjust(BOOL bUpDown);
  83.       private:
  84.         // Data private to this interface implementation of ICruise.
  85.         ULONG         m_cRefI;       // Interface Ref Count (for debugging).
  86.         COCruiseCar*  m_pBackObj;    // Parent Object back pointer.
  87.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  88.     };
  89.     // Make the otherwise private and nested ICar interface implementation
  90.     // a friend to COM object instantiations of this selfsame COCruiseCar
  91.     // COM object class.
  92.     friend CImpICruise;
  93.     // Private data of COCruiseCar COM objects.
  94.     // Nested ICruise implementation instantiation.  This ICruise interface
  95.     // is implemented inside this COCruiseCar object as a native interface.
  96.     CImpICruise     m_ImpICruise;
  97.     // Main Object reference count.
  98.     ULONG           m_cRefs;
  99.     // Outer unknown (aggregation & delegation). Used when this COCruiseCar
  100.     // object is being aggregated.  Otherwise it is used for delegation
  101.     // if this object is reused via containment.
  102.     IUnknown*       m_pUnkOuter;
  103.     // We need to save the IUnknown interface pointer on the COCar
  104.     // object that we aggregate.  We use this when we need to delegate
  105.     // IUnknown calls to this aggregated inner object.
  106.     IUnknown*       m_pUnkCar;
  107.     // Pointer to this component server's control object.
  108.     CServer*        m_pServer;
  109. };
  110. typedef COCruiseCar* PCOCruiseCar;
  111. #endif // __cplusplus
  112. #endif // CRUCAR_H