Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 650 git-svn-id: svn://10.65.10.50/trunk@14148 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			27 lines
		
	
	
		
			363 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			363 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef __LOG_H
 | |
| #define __LOG_H
 | |
| 
 | |
| #ifndef __STRINGS_H
 | |
| #include <strings.h>
 | |
| #endif
 | |
| 
 | |
| class TRecordset;
 | |
| 
 | |
| class TError_log : public TObject
 | |
| {
 | |
| 	TString _rep;
 | |
|   TRecordset* _log;
 | |
| 
 | |
| public:
 | |
| 	void set_rep(const char* rep) { _rep = rep; }
 | |
| 	void set_header(const char* header);
 | |
| 	void log(long sev, const char* msg);
 | |
| 	bool show();
 | |
| 
 | |
| 	
 | |
| 	TError_log();
 | |
| 	~TError_log();
 | |
| };
 | |
| 
 | |
| #endif
 |