summaryrefslogtreecommitdiff
path: root/src/dialogues/ErrorMessage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogues/ErrorMessage.h')
-rw-r--r--src/dialogues/ErrorMessage.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/dialogues/ErrorMessage.h b/src/dialogues/ErrorMessage.h
new file mode 100644
index 0000000..f8575bd
--- /dev/null
+++ b/src/dialogues/ErrorMessage.h
@@ -0,0 +1,20 @@
+/*
+ * ErrorMessage.h
+ *
+ * Created on: Jan 29, 2012
+ * Author: Simon
+ */
+
+#ifndef ERRORMESSAGE_H_
+#define ERRORMESSAGE_H_
+
+#include "interface/Window.h"
+
+class ErrorMessage: public ui::Window {
+public:
+ ErrorMessage(std::string title, std::string message);
+ virtual void OnDraw();
+ virtual ~ErrorMessage();
+};
+
+#endif /* ERRORMESSAGE_H_ */