18 lines
326 B
C++
18 lines
326 B
C++
#ifndef ASSISTANT_H
|
|
#define ASSISTANT_H
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <random>
|
|
|
|
#ifdef USE_BOOST
|
|
#include <boost/filesystem.hpp>
|
|
namespace fs = boost::filesystem;
|
|
#else
|
|
#include <filesystem>
|
|
namespace fs = std::filesystem;
|
|
#endif
|
|
|
|
bool random_file(const std::string& file, size_t size);
|
|
|
|
#endif // ASSISTANT_H
|