diff options
| author | dawidg81 <dawidgorski.m@gmail.com> | 2026-01-27 19:19:30 +0100 |
|---|---|---|
| committer | dawidg81 <dawidgorski.m@gmail.com> | 2026-01-27 19:19:30 +0100 |
| commit | f34e07b4962f65362afa5ca98759e87929d964bc (patch) | |
| tree | d3df203e017542634f39962c052bdf18f7d07617 /src/Utils/catch.cpp | |
| parent | 4d065c1024ef88217e3de9d9cc18f20be1821c54 (diff) | |
file node
Diffstat (limited to 'src/Utils/catch.cpp')
| -rw-r--r-- | src/Utils/catch.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Utils/catch.cpp b/src/Utils/catch.cpp new file mode 100644 index 0000000..37ebefe --- /dev/null +++ b/src/Utils/catch.cpp @@ -0,0 +1,22 @@ +#include "Utils.hpp" + +#include <iostream> +#include <ostream> + +int Utils::catchInputInt(int* input){ + std::cin >> input; + + if (std::cin.fail()) { + std::cout << "error: Input failed" << std::endl; + return 1; + } + + return 0; +} + +int Utils::catchReturn(int renum){ + if (renum != 0) { + std::cout << "Received error signal, sending further" << std::endl; + } + return 0; +} |
