4779fb9b80
Output file must be preallocated.
15 lines
326 B
C++
15 lines
326 B
C++
#ifndef BASE_OUTPUT_FILE_REQUIREMENTS_H
|
|
#define BASE_OUTPUT_FILE_REQUIREMENTS_H
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
namespace base {
|
|
void check_output_file_requirements(std::string const &path);
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#endif
|