Errors.cc
changeset 0 6b8091ca909a
equal deleted inserted replaced
-1:000000000000 0:6b8091ca909a
       
     1 #include "Errors.h"
       
     2 #include <stdlib.h>
       
     3 #include <iostream>
       
     4 
       
     5 using namespace std;
       
     6 
       
     7 void Errors::Debug(char *text)
       
     8 {
       
     9 	cout << "Debug: " << text << '\n';
       
    10 }
       
    11 void Errors::Fatal(char *text)
       
    12 {
       
    13 	cout << "Fatal: " << text << '\n';
       
    14 	exit(1);
       
    15 }