r5sdk/r5dev/common/sdkdefs.h

21 lines
414 B
C
Raw Normal View History

#ifndef SDKDEFS_H
#define SDKDEFS_H
// Common type declarations to reduce code verbosity.
using std::pair;
using std::regex;
using std::string;
using std::wstring;
using std::vector;
using std::fstream;
using std::ifstream;
using std::ofstream;
using std::stringstream;
using std::ostringstream;
using std::unordered_map;
namespace fs = std::filesystem;
typedef const unsigned char* rsig_t;
#endif // SDKDEFS_H