r5sdk/r5dev/common/sdkdefs.h
Kawe Mazidjatari 8c1dfb50f4 Address class cleanup/improvements
* Move most definitions to implementation file to avoid recompiling whole program for small changes
* Pass strings by reference for where possible.
* Split Module class to dedicated file.
* Add const qualifiers to all eligible methods for address/module class
* Some renaming
2022-04-10 19:59:34 +02:00

18 lines
343 B
C++

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