r5sdk/r5dev/common/sdktypes.h

16 lines
311 B
C
Raw Normal View History

#ifndef SDKTYPES_H
#define SDKTYPES_H
// Common type declarations to reduce code verbosity.
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 // SDKTYPES_H