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

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 Containment 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 APTSERVE.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:    3-20-95: atrent - Editor-inheritance from CRUCAR.H in
  19.                the LOCSERVE 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 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.                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.     // We get this ICar interface pointer via containment reuse of the
  66.     // ICar interface in an instantiated COCar.
  67.     ICar*           m_pICar;
  68.   private:
  69.     // We declare nested class interface implementations here.
  70.     // We implement the basic ICar interface in this COCruiseCar
  71.     // COM object class.
  72.     class CImpICar : public ICar
  73.     {
  74.       public:
  75.         // Interface Implementation Constructor & Destructor.
  76.         CImpICar(COCruiseCar* pBackObj, IUnknown* pUnkOuter);
  77.         ~CImpICar(void);
  78.         // IUnknown methods.
  79.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  80.         STDMETHODIMP_(ULONG) AddRef(void);
  81.         STDMETHODIMP_(ULONG) Release(void);
  82.         // ICar methods.
  83.         STDMETHODIMP Shift(short nGear);
  84.         STDMETHODIMP Clutch(short nEngaged);
  85.         STDMETHODIMP Speed(short nMph);
  86.         STDMETHODIMP Steer(short nAngle);
  87.       private:
  88.         // Data private to this COCruiseCar interface implementation of ICar.
  89.         ULONG         m_cRefI;       // Interface Ref Count (for debugging).
  90.         COCruiseCar*  m_pBackObj;    // Parent Object back pointer.
  91.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  92.     };
  93.     // We implement the ICruise interface (ofcourse) in this COCruiseCar
  94.     // COM object class.  This is the native interface that we are using
  95.     // as an augmentation to the existing COCar COM object class.
  96.     class CImpICruise : public ICruise
  97.     {
  98.       public:
  99.         // Interface Implementation Constructor & Destructor.
  100.         CImpICruise(COCruiseCar* pBackObj, IUnknown* pUnkOuter);
  101.         ~CImpICruise(void);
  102.         // IUnknown methods.
  103.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  104.         STDMETHODIMP_(ULONG) AddRef(void);
  105.         STDMETHODIMP_(ULONG) Release(void);
  106.         // ICruise methods.
  107.         STDMETHODIMP Engage(BOOL bOnOff);
  108.         STDMETHODIMP Adjust(BOOL bUpDown);
  109.       private:
  110.         // Data private to this interface implementation of ICruise.
  111.         ULONG         m_cRefI;       // Interface Ref Count (for debugging).
  112.         COCruiseCar*  m_pBackObj;    // Parent Object back pointer.
  113.         IUnknown*     m_pUnkOuter;   // Outer unknown for Delegation.
  114.     };
  115.     // Make the otherwise private and nested ICar and ICruise interface
  116.     // implementations a friend to COM object instantiations of this
  117.     // selfsame COCruiseCar COM object class.
  118.     friend CImpICar;
  119.     friend CImpICruise;
  120.     // Private data of COCruiseCar COM objects.
  121.     // Nested ICar implementation instantiation.
  122.     CImpICar        m_ImpICar;
  123.     // Nested ICruise implementation instantiation.  This ICruise interface
  124.     // is implemented inside this COCruiseCar object as a native interface.
  125.     CImpICruise     m_ImpICruise;
  126.     // Main Object reference count.
  127.     ULONG           m_cRefs;
  128.     // Outer unknown (aggregation & delegation). Used when this COCruiseCar
  129.     // object is being aggregated.  Otherwise it is used for delegation
  130.     // if this object is reused via containment.
  131.     IUnknown*       m_pUnkOuter;
  132.     // Pointer to this component server's control object.
  133.     CServer*        m_pServer;
  134. };
  135. typedef COCruiseCar* PCOCruiseCar;
  136. #endif // __cplusplus
  137. #endif // CRUCAR_H