Errors.cc
author viric@llimona
Thu, 18 May 2006 23:12:51 +0200
changeset 0 6b8091ca909a
permissions -rw-r--r--
Init from working directory of svn repository.

#include "Errors.h"
#include <stdlib.h>
#include <iostream>

using namespace std;

void Errors::Debug(char *text)
{
	cout << "Debug: " << text << '\n';
}
void Errors::Fatal(char *text)
{
	cout << "Fatal: " << text << '\n';
	exit(1);
}