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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      SAMPLE.H
  3.   Summary:   Declares a COLicCarSample utility COM object used to
  4.              implement the server as a code sample (mainly with an Init
  5.              method to enable setting up Trace logging of activity in the
  6.              server to the logging facility in the Client).
  7.              For a comprehensive tutorial code tour of this module's
  8.              contents and offerings see the tutorial LICSERVE.HTM
  9.              file. For more specific technical details on the internal
  10.              workings see the comments dispersed throughout the module's
  11.              source code.
  12.   Classes:   COLicCarSample.
  13.   Functions: none
  14.   Origin:    10-5-95: atrent - Editor-inheritance from SAMPLE.H in
  15.                the DLLSERVE Tutorial Code Sample.
  16. ----------------------------------------------------------------------------
  17.   This file is part of the Microsoft COM Tutorial Code Samples.
  18.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  19.   This source code is intended only as a supplement to Microsoft
  20.   Development Tools and/or on-line documentation.  See these other
  21.   materials for detailed information regarding Microsoft code samples.
  22.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  23.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  24.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  25.   PARTICULAR PURPOSE.
  26. ==========================================================================+*/
  27. #if !defined(SAMPLE_H)
  28. #define SAMPLE_H
  29. #ifdef __cplusplus
  30. /*O+O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O+++O
  31.   ObjectClass: COLicCarSample
  32.   Summary:     Utility LicCarSample COM Object Class for the LICSERVE
  33.                server as a code sample.
  34.   Interfaces:  IUnknown
  35.                  Standard interface providing COM object features.
  36.                ISample
  37.                  Sample-specific Utility services for server as a whole.
  38.   Aggregation: Yes, COLicCarSample COM objects are aggregatable by
  39.                passing a non-NULL pUnkOuter IUnknown pointer into the
  40.                constructor.
  41. O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O---O-O*/
  42. class COLicCarSample : public IUnknown
  43. {
  44.   public:
  45.     // Main Object Constructor & Destructor.
  46.     COLicCarSample(IUnknown* pUnkOuter, CServer* pServer);
  47.     ~COLicCarSample(void);
  48.     // IUnknown methods. Main object, non-delegating.
  49.     STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  50.     STDMETHODIMP_(ULONG) AddRef(void);
  51.     STDMETHODIMP_(ULONG) Release(void);
  52.   private:
  53.     // We declare nested class interface implementations here.
  54.     // We implement the ISample interface in this COLicCarSample
  55.     // COM object class.
  56.     class CImpISample : public ISample
  57.     {
  58.       public:
  59.         // Interface Implementation Constructor & Destructor.
  60.         CImpISample(
  61.           COLicCarSample* pBackObj,
  62.           IUnknown* pUnkOuter,
  63.           CServer* pServer);
  64.         ~CImpISample(void);
  65.         // IUnknown methods.
  66.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  67.         STDMETHODIMP_(ULONG) AddRef(void);
  68.         STDMETHODIMP_(ULONG) Release(void);
  69.         // ISample methods.
  70.         STDMETHODIMP         Init(HWND, PVOID);
  71.         STDMETHODIMP         AboutBox(HWND);
  72.       private:
  73.         // Data private to this interface implementation of ISample.
  74.         ULONG            m_cRefI;        // Interface Ref Count (debugging).
  75.         COLicCarSample*  m_pBackObj;     // Parent Object back pointer.
  76.         IUnknown*        m_pUnkOuter;    // Outer unknown for Delegation.
  77.         CServer*         m_pServer;      // Server Control object.
  78.     };
  79.     // Make the otherwise private and nested ISample interface
  80.     // implementation a friend to COM object instantiations of this
  81.     // selfsame COLicCarSample COM object class.
  82.     friend CImpISample;
  83.     // Private data of COLicCarSample COM objects.
  84.     // Nested ISample implementation instantiation.
  85.     CImpISample      m_ImpISample;
  86.     // Main Object reference count.
  87.     ULONG            m_cRefs;
  88.     // Outer unknown (aggregation & delegation). Used when this
  89.     // COLicCarSample object is being aggregated.  Otherwise it is used
  90.     // for delegation if this object is reused via containment.
  91.     IUnknown*        m_pUnkOuter;
  92.     // Pointer to this component server's control object.
  93.     CServer*         m_pServer;
  94. };
  95. typedef COLicCarSample* PCOLicCarSample;
  96. #endif // __cplusplus
  97. #endif // SAMPLE_H