⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reporter.h

📁 This Source-Navigator, an IDE for C/C++/Fortran/Java/Tcl/PHP/Python and a host of other languages.
💻 H
字号:
// $Header: /cvsroot/sourcenav/src/snavigator/demo/c++_demo/glish/Reporter.h,v 1.1.1.1 2002/04/18 23:35:25 mdejong Exp $#ifndef reporter_h#define reporter_h#include "Glish/Object.h"class ostream;class RMessage {    public:	RMessage( const GlishObject* message_object );	RMessage( const char* message_string );	RMessage( int message_int );	// Writes its value to the given stream.  leading_space true means	// that if appropriate (i.e., if the Rmessage object is an GlishObject	// and not a string), then a leading space should first be written;	// similarly, trailing_space indicates whether or not a trailing	// space should be written for an GlishObject.	//  The character returned is that *last* character written, if	// known (it will be known in the string case but not in the	// GlishObject case), or '\0' if not known.	char Write( ostream&, int leading_space, int trailing_space ) const;	// Returns the *first* character which would be written, if	// known (it will be known in the string case but not in the	// GlishObject case), or '\0' if not known.	char FirstChar() const;    protected:	const GlishObject* object;	const char* str;	int int_val;	};extern RMessage EndMessage;class Reporter {    public:	Reporter( ostream& reporter_stream );	void Report( const RMessage&,		     const RMessage& = EndMessage, const RMessage& = EndMessage,		     const RMessage& = EndMessage, const RMessage& = EndMessage,		     const RMessage& = EndMessage, const RMessage& = EndMessage,		     const RMessage& = EndMessage, const RMessage& = EndMessage,		     const RMessage& = EndMessage, const RMessage& = EndMessage 		   );	// Count of how many times this reporter has generated a message	int Count()			{ return count; }	void SetCount( int new_count )	{ count = new_count; }    protected:	virtual void Prolog();	virtual void Epilog();	int count;	ostream& stream;	};// Unfortunately "error", "fatal", and "warn" are popular names and their// use has led to a number of hard-to-debug name clashes.#define error glish_error#define warn glish_warn#define fatal glish_fatal#define message glish_messageextern Reporter* error;extern Reporter* warn;extern Reporter* fatal;extern Reporter* message;extern void init_reporters();#endif	/* reporter_h */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -