-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUtility.cpp
43 lines (33 loc) · 831 Bytes
/
Utility.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
40
41
42
43
#include "StdAfx.h"
#include <stdarg.h>
#include <limits>
#include "Utility.h"
namespace Scan
{
OStringStream& OutStream::getStream()
{
return m_os;
}
OutStream& OutStream::format(const char *fmt, ...)
{
va_list arg;
va_start(arg, fmt);
int len = _vscprintf(fmt, arg) + 1;
char *buf = new char[len];
vsprintf_s(buf, len, fmt, arg);
m_os << buf;
delete[] buf;
va_end(arg);
return *this;
}
NativeLocale::NativeLocale()
{
m_lastLocale = setlocale(LC_ALL, "");
}
NativeLocale::~NativeLocale()
{
setlocale(LC_ALL, m_lastLocale);
}
const float FLOAT_EPSILON = std::numeric_limits<float>::epsilon();
const float FLOAT_INFINITY = std::numeric_limits<float>::infinity();
}