home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Think Class Libraries / WASTE TCL 2.0b2 / WASTE VA / Source / x_CVAWASTEText.cp < prev    next >
Encoding:
Text File  |  1996-06-16  |  1.6 KB  |  63 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  x_CVAWASTEText.cp
  3.  
  4.                 CVAWASTEText Panorama/EditText Class
  5.     
  6.     Copyright Â© 1996 Dan Crevier. All rights reserved.
  7.  
  8.     Generated by Visual Architectâ„¢
  9.  
  10.     This file is rewritten each time you generate code. You should not
  11.     make changes to this file; changes should go in the My.cp
  12.     file, instead.
  13.  
  14.     If you want to change how Visual Architect generates this file, you can
  15.     change the template for this file. It is "_Pano_cp" in the Visual Architect
  16.     Templates folder.
  17.  
  18.  ******************************************************************************/
  19.  
  20. #include "x_CVAWASTEText.h"
  21.  
  22. #include <CBartender.h>
  23.  
  24.  
  25. extern CBartender    *gBartender;        /* Manages all menus                */
  26.  
  27.  
  28. TCL_DEFINE_CLASS_M1(x_CVAWASTEText, CWASTEText);
  29.  
  30.  
  31. /******************************************************************************
  32.  PutTo
  33.  
  34.         Put the contents of this object to the stream
  35.  ******************************************************************************/
  36.  
  37. void    x_CVAWASTEText::PutTo(
  38.     CStream     &aStream)
  39. {
  40.         // Put data members for this class
  41.  
  42.  
  43.     CWASTEText::PutTo(aStream);    /* Let superclass save                */
  44. }
  45.  
  46.  
  47. /******************************************************************************
  48.  GetFrom
  49.  
  50.         Get the contents of this object from the stream and
  51.         initialize the object
  52.  ******************************************************************************/
  53.  
  54. void    x_CVAWASTEText::GetFrom(
  55.     CStream     &aStream)
  56. {
  57.         // Get data members for this class
  58.  
  59.  
  60.                                         /* Let superclass restore            */
  61.     CWASTEText::GetFrom(aStream);
  62. }
  63.