My Project
 
Loading...
Searching...
No Matches
wnderror.h
Go to the documentation of this file.
1#pragma once
2
3#include "wndtitledmessage.h"
4#include "icon.h"
5
6namespace{
7 const char* TXT_TITLE = "ERROR";
8}
9
11private:
12
13public:
14 WndError(const std::string& message)
15 :WndTitledMessage(Icons::get(Icons::WARNING), TXT_TITLE, message)
16 {
17
18 }
19};
Definition icon.h:5
WndError(const std::string &message)
Definition wnderror.h:14
WndTitledMessage(Image *icon, const std::string &title, const std::string &message)
Definition wndtitledmessage.cpp:10