home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef _IVBASE_
- #define _IVBASE_
- /*******************************************************************************
- * FILE NAME: ivbase.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IVBase *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
- #include <ibase.hpp>
-
- #pragma pack(4)
-
- class ostream;
-
-
- class IString;
-
- class IVBase : public IBase {
- public:
- /*--------------------------- Constructors -----------------------------------*/
- virtual
- ~IVBase ( );
-
- /*--------------------------- Diagnostics ------------------------------------*/
- friend ostream
- &operator << ( ostream &aStream,
- const IVBase &anObject );
-
- virtual IString
- asString ( ) const,
- asDebugInfo ( ) const;
-
-
-
- }; // IVBase
-
-
-
- #pragma pack()
-
- #endif /* _IVBASE_ */
-
-
-