You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef MESSAGEBOX_H |
|
#define MESSAGEBOX_H |
|
|
|
#include <string> |
|
|
|
#include "window.h" |
|
|
|
class MessageBox : public Window |
|
{ |
|
public: |
|
MessageBox(std::string message); |
|
MessageBox(std::string message, std::string title); |
|
|
|
private: |
|
}; |
|
|
|
#endif // MESSAGEBOX_H
|
|
|