/* ident "@(#)ctrans:src/print_self.h 1.2" */
/* print_self.H -- base class for objects that want to support
the 'official' print self for \T in printf. */
/*
$Header: /var/lib/cvsd/repos/research/researchv10dc/cmd/cfront/ptcfront/print_self.h,v 1.1.1.1 2018/04/24 17:21:33 root Exp $
Copyright (c) 1989 by Object Design, Inc., Burlington, Mass.
All rights reserved.
*/
#ifndef _PRINT_SELF_CLASS
#define _PRINT_SELF_CLASS
#include <iostream.h>
class _Print_self {
public:
virtual char * type_name () const { return "OBJECT"; }
virtual int print_self (ostream&) const; // returns count of characters printed.
virtual int format_self (ostream&) const; // returns count of characters printed.
};
#endif
unix.superglobalmegacorp.com