C++ Utilities 5.24.7
Useful C++ classes and routines such as argument parser, IO and conversion utilities
Loading...
Searching...
No Matches
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#include <string_view>
8
9namespace CppUtilities {
10
11CPP_UTILITIES_EXPORT std::string readFile(const std::string &path, std::string::size_type maxSize = std::string::npos);
12#ifdef CPP_UTILITIES_IOMISC_STRING_VIEW
13CPP_UTILITIES_EXPORT std::string readFile(std::string_view path, std::string_view::size_type maxSize = std::string_view::npos);
14#endif
15CPP_UTILITIES_EXPORT void writeFile(std::string_view path, std::string_view contents);
16} // namespace CppUtilities
17
18#endif // IOUTILITIES_MISC_H
#define CPP_UTILITIES_EXPORT
Marks the symbol to be exported by the c++utilities library.
Definition global.h:14
Contains all utilities provides by the c++utilities library.
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:17
IntegralType stringToNumber(const StringType &string, BaseType base=10)
Converts the given string to an unsigned/signed number assuming string uses the specified base.
CPP_UTILITIES_EXPORT void writeFile(std::string_view path, std::string_view contents)
Writes all contents to the specified file in a single call.
Definition misc.cpp:58