home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / TESTCLNT / NEWCLNT.H$ / newclnt
Encoding:
Text File  |  1992-01-15  |  897 b   |  33 lines

  1. // newclnt.h : This file contains prototypes for the CNewClient class 
  2. //              which inherits from COleClientItem.
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and Microsoft
  10. // QuickHelp documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14.  
  15. #ifndef __NEWCLNT_H__
  16. #define __NEWCLNT_H__
  17.  
  18. class CTestClient;
  19.  
  20. class CNewClient : public COleClientItem
  21. {
  22. public:
  23.     CNewClient(CTestClient* pParent, CNewClientDoc* pDoc);
  24.     virtual void OnChange(OLE_NOTIFICATION wNotification);
  25.     virtual void OnRenamed();
  26.  
  27. protected:
  28.     CTestClient*    m_pTestClient;
  29. };
  30.  
  31.  
  32. #endif // __NEWCLNT_H__
  33.