-
Notifications
You must be signed in to change notification settings - Fork 1
/
errors.cpp
39 lines (35 loc) · 857 Bytes
/
errors.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <fstream>
#include <stdlib.h>
//////////////////////////////////
// check file exist
/////////////////////////////////
inline void assure(std::ifstream& in,
const char* filename = "")
{
using namespace std;
if (!in)
{
fprintf(stderr, "Could not open file %s\n", filename);
exit(EXIT_FAILURE);
}
}
inline void assure(std::ofstream& in,
const char* filename = "")
{
using namespace std;
if (!in)
{
fprintf(stderr, "Could not open file %s\n", filename);
exit(EXIT_FAILURE);
}
}
inline void assure(std::fstream& in,
const char* filename = "")
{
using namespace std;
if (!in)
{
fprintf(stderr, "Could not open file %s\n", filename);
exit(EXIT_FAILURE);
}
}