2022-04-10 19:59:34 +02:00
|
|
|
#ifndef SDKDEFS_H
|
|
|
|
#define SDKDEFS_H
|
2022-04-09 00:59:42 +02:00
|
|
|
|
|
|
|
// Common type declarations to reduce code verbosity.
|
2022-04-10 19:59:34 +02:00
|
|
|
using std::pair;
|
|
|
|
using std::regex;
|
2022-04-09 00:59:42 +02:00
|
|
|
using std::string;
|
2022-04-24 19:34:14 +02:00
|
|
|
using std::wstring;
|
2022-04-09 00:59:42 +02:00
|
|
|
using std::vector;
|
|
|
|
using std::fstream;
|
|
|
|
using std::ifstream;
|
|
|
|
using std::ofstream;
|
2022-04-13 01:25:33 +02:00
|
|
|
using std::stringstream;
|
2022-04-09 00:59:42 +02:00
|
|
|
using std::ostringstream;
|
2022-04-14 19:18:59 +02:00
|
|
|
using std::unordered_map;
|
2022-04-09 00:59:42 +02:00
|
|
|
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
typedef const unsigned char* rsig_t;
|
|
|
|
|
2022-04-10 19:59:34 +02:00
|
|
|
#endif // SDKDEFS_H
|