#include "onerror.hpp"


//------------------------- Error Module ------------------------//
//						  v 05 . 03 .  2007						 //
//																 //
//								MT								 //
//---------------------------------------------------------------//


 #include <string.h>
 #include "stdio.h"


void CError :: OnError(char *s, int num)  {
  
	last_error_text = strdup(s);
	number = num;

	printf("%s :: %d", s, num);
	getchar();

 exit(number);
};

