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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      CAR.H
  3.   Summary:   Include file for the aggregatable COCar COM object class.
  4.              COCar offers a main IUnknown interface and the ICar
  5.              interface (Car-related features).  This multiple interface
  6.              COM Object Class is achieved via the technique of nested
  7.              classes--the implementation of the ICar interface is
  8.              nested inside of the COCar Class.
  9.              For a comprehensive tutorial code tour of this module's
  10.              contents and offerings see the tutorial APTSERVE.HTM file.
  11.              For more specific technical details on the internal workings
  12.              see the comments dispersed throughout the module's source code.
  13.   Classes:   COCar.
  14.   Functions:
  15.   Origin:    3-20-96: atrent - Editor-inheritance from CAR.H in
  16.                the LOCSERVE Tutorial Code Sample.
  17. ----------------------------------------------------------------------------
  18.   This file is part of the Microsoft COM Tutorial Code Samples.
  19.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  20.   This source code is intended only as a supplement to Microsoft
  21.   Development Tools and/or on-line documentation.  See these other
  22.   materials for detailed information regarding Microsoft code samples.
  23.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  24.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  25.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  26.   PARTICULAR PURPOSE.
  27. ==========================================================================+*/
  28. #if !defined(CAR_H)
  29. #define CAR_H
  30. #ifdef __cplusplus
  31. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  32.   ObjectClass: COCar
  33.   Summary:     COM object class for COCar COM objects.  COM objects of
  34.                this class offer ICar interface features (Shift, Clutch,
  35.                Speed, and Steer).  The mulitple interfaces on this COM
  36.                object are constructed via the nested interface classes
  37.                technique.
  38.   Interfaces:  IUnknown
  39.                  Standard interface providing COM object features.
  40.                ICar
  41.                  Basic Car operation features.
  42.   Aggregation: Yes, COCar COM Objects are aggregatable by passing
  43.                a non-NULL pUnkOuter IUnknown pointer into the constructor.
  44. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  45. class COCar : public IUnknown
  46. {
  47.   public:
  48.     // Main Object Constructor & Destructor.
  49.     COCar(IUnknown* pUnkOuter, CServer* pServer);
  50.     ~COCar(void);
  51.     // IUnknown methods. Main object, non-delegating.
  52.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  53.     STDMETHODIMP_(ULONG) AddRef(void);
  54.     STDMETHODIMP_(ULONG) Release(void);
  55.   private:
  56.     // We declare nested class interface implementations here.
  57.     class CImpICar : public ICar
  58.     {
  59.       public:
  60.         // Interface Implementation Constructor & Destructor.
  61.         CImpICar(COCar* pBackObj, IUnknown* pUnkOuter);
  62.         ~CImpICar(void);
  63.         // IUnknown methods.
  64.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  65.         STDMETHODIMP_(ULONG) AddRef(void);
  66.         STDMETHODIMP_(ULONG) Release(void);
  67.         // ICar methods.
  68.         STDMETHODIMP Shift(short nGear);
  69.         STDMETHODIMP Clutch(short nEngaged);
  70.         STDMETHODIMP Speed(short nMph);
  71.         STDMETHODIMP Steer(short nAngle);
  72.       private:
  73.         // Data private to this COCar interface implementation of ICar.
  74.         ULONG        m_C;            // Method call counter (tutorial use).
  75.         ULONG        m_cRefI;        // Interface Ref Count (debugging use).
  76.         COCar*       m_pBackObj;     // Parent Object back pointer.
  77.         IUnknown*    m_pUnkOuter;    // Outer unknown for Delegation.
  78.     };
  79.     // Make the otherwise private and nested ICar interface implementation
  80.     // a friend to COM object instantiations of this selfsame COCar
  81.     // COM object class.
  82.     friend CImpICar;
  83.     // Private data of COCar COM objects.
  84.     // Nested ICar implementation instantiation.  This ICar interface
  85.     // is instantiated inside this COCar object as a native interface.
  86.     CImpICar         m_ImpICar;
  87.     // Main Object reference count.
  88.     ULONG            m_cRefs;
  89.     // Outer unknown (aggregation & delegation).
  90.     IUnknown*        m_pUnkOuter;
  91.     // Pointer to this component server's control object.
  92.     CServer*         m_pServer;
  93. };
  94. typedef COCar* PCOCar;
  95. #endif // __cplusplus
  96. #endif // CAR_H