Errors.cc
changeset 0 6b8091ca909a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Errors.cc	Thu May 18 23:12:51 2006 +0200
@@ -0,0 +1,15 @@
+#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);
+}