sculpto
files_save.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file file.h
3 * \brief Assets manager file processing functions implementation module.
4 *
5 * \author Sabitov Kirill
6 * \date 17 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "base.h"
12
13namespace scl::assets_manager
14{
15 /*!*
16 * File text save function.
17 *
18 * \param Data - file text buffer.
19 * \param FilePath - outpus file path.
20 * \return file text string.
21 */
22 void SaveFile(const std::string &Data, const std::filesystem::path &FilePath);
23}
Topology object basis class for mesh creating implementation module.
void SaveFile(const std::string &Data, const std::filesystem::path &FilePath)
Definition: files_save.cpp:12