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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * CLIENT.CPP
  3.  * Patron Chapter 21
  4.  *
  5.  * Implementation of the CPatronClient class that just makes sure
  6.  * we get a CPatronDoc on doc creation and that we initialize fully.
  7.  *
  8.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  9.  *
  10.  * Kraig Brockschmidt, Microsoft
  11.  * Internet  :  kraigb@microsoft.com
  12.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  13.  */
  14. #include "patron.h"
  15. /*
  16.  * CPatronClient::CPatronClient
  17.  * CPatronClient::~CPatronClient
  18.  *
  19.  * Constructor Parameters:
  20.  *  hInst           HINSTANCE of the application.
  21.  *  pFR             PCFrame to the frame object.
  22.  */
  23. CPatronClient::CPatronClient(HINSTANCE hInst, PCFrame pFR)
  24.     : CClient(hInst, pFR)
  25.     {
  26.     return;
  27.     }
  28. CPatronClient::~CPatronClient(void)
  29.     {
  30.     return;
  31.     }
  32. /*
  33.  * CPatronClient::CreateCDocument
  34.  *
  35.  * Purpose:
  36.  *  Constructs a new document specific to the application.
  37.  *
  38.  * Parameters:
  39.  *  None
  40.  *
  41.  * Return Value:
  42.  *  PCDocument      Pointer to the new document object.
  43.  */
  44. PCDocument CPatronClient::CreateCDocument(void)
  45.     {
  46.     return (PCDocument)(new CPatronDoc(m_hInst, m_pFR, m_pAdv));
  47.     }