Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities
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 IOUTILITIES_CATCHIOFAILURE_H |
|
#define IOUTILITIES_CATCHIOFAILURE_H |
|
|
|
#include "../application/global.h" |
|
|
|
#include <string> |
|
|
|
namespace IoUtilities { |
|
|
|
LIB_EXPORT const char *catchIoFailure(); |
|
LIB_EXPORT void throwIoFailure(const char *what); |
|
|
|
} |
|
|
|
#endif // IOUTILITIES_CATCHIOFAILURE_H
|
|
|