summaryrefslogtreecommitdiff
path: root/src/dialogues/ErrorMessage.h
blob: f8575bde7b1a0f0e8daa51cbe0a90ae9d147b6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_ */