summaryrefslogtreecommitdiff
path: root/src/dialogues/ErrorMessage.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-29 14:44:36 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-29 14:44:36 (GMT)
commit680a36549adaed0c3ce7e8906fadbdf190b0b3b0 (patch)
tree21ca16411c1687bb212369a59c5f3de2a0cf023b /src/dialogues/ErrorMessage.h
parent7c53ca7799832920066c23cfad2f1d7fa82233c7 (diff)
downloadpowder-680a36549adaed0c3ce7e8906fadbdf190b0b3b0.zip
powder-680a36549adaed0c3ce7e8906fadbdf190b0b3b0.tar.gz
Background retrieval of save info and save list.
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_ */