NeTrainSim 0.1.1 beta
The Open-Source Network Trains Simulator
 
Loading...
Searching...
No Matches
errorhandler.h
Go to the documentation of this file.
1#ifndef ERRORHANDLER_H
2#define ERRORHANDLER_H
3
4#include <string>
5
6namespace ErrorHandler {
7
13void showNotification(std::string msg);
14
20void showWarning(std::string msg);
21
27void showError(std::string msg);
28
29}
30
31#endif // ERRORHANDLER_H
Definition errorhandler.h:6
void showNotification(std::string msg)
Displays a notification message.
Definition errorhandler.cpp:4
void showWarning(std::string msg)
Displays a warning message.
Definition errorhandler.cpp:8
void showError(std::string msg)
Displays an error message.
Definition errorhandler.cpp:13