mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* 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
18 lines
343 B
C++
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
|