home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-06 | 2.0 KB | 70 lines | [TEXT/KAHL] |
- /******************************************************************************
- CVAWASTEText.cp
-
- CVAWASTEText DialogText Class
-
- Copyright © 1995 Dan Crevier. All rights reserved.
-
- Generated by Visual Architectâ„¢ 9:45 AM Mon, Nov 6, 1995
-
- This file is only generated once. You can modify it by filling
- in the placeholder functions and adding any new functions you wish.
-
- If you change the name of the document class, a fresh version of this
- file will be generated. If you have made any changes to the file
- with the old name, you will have to copy those changes to the new
- file by hand.
-
- ******************************************************************************/
-
- #include "CVAWASTEText.h"
-
-
- TCL_DEFINE_CLASS_D1(CVAWASTEText, x_CVAWASTEText);
-
- /**** C O N S T R U C T I O N / D E S T R U C T I O N M E T H O D S ****/
-
-
- /******************************************************************************
- PutTo
-
- Put the contents of this object to the stream
- ******************************************************************************/
-
- void CVAWASTEText::PutTo(
- CStream &aStream)
- {
- // Put any additional data members for this class
- // before calling the superclass PutTo.
-
- // If you have no additional data members, the
- // PutTo and GetFrom functions can be eliminated.
-
- x_CVAWASTEText::PutTo(aStream); /* Let superclass save */
-
- // By convention, any subordinate objects are put
- // after the superclass has had a chance to write
- // its instance variables.
- }
-
-
- /******************************************************************************
- GetFrom
-
- Get the contents of this object from the stream and
- initialize the object
- ******************************************************************************/
-
- void CVAWASTEText::GetFrom(
- CStream &aStream)
- {
- // Get any additional data members for this class
- // before calling the superclass GetFrom
-
-
- /* Let superclass restore */
- x_CVAWASTEText::GetFrom(aStream);
-
- // Restore any subordinate objects below
- }
-