C++ Utilities  4.17.0
Useful C++ classes and routines such as argument parser, IO and conversion utilities
misc.h
Go to the documentation of this file.
1 #ifndef IOUTILITIES_MISC_H
2 #define IOUTILITIES_MISC_H
3 
4 #include "../global.h"
5 
6 #include <string>
7 
8 namespace IoUtilities {
9 
10 CPP_UTILITIES_EXPORT std::string readFile(const std::string &path, std::string::size_type maxSize = std::string::npos);
11 }
12 
13 #endif // IOUTILITIES_MISC_H
#define CPP_UTILITIES_EXPORT
CPP_UTILITIES_EXPORT std::string readFile(const std::string &path, std::string::size_type maxSize=std::string::npos)
Reads all contents of the specified file in a single call.
Definition: misc.cpp:16
Contains utility classes helping to read and write streams.
Definition: binaryreader.h:10