sculpto
files_load.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 08 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "base.h"
12
14{
15 /*!*
16 * File text load function.
17 *
18 * \param FilePath - file to path to load.
19 * \return file text string.
20 */
21 std::string LoadFile(const std::filesystem::path &FilePath);
22}
Topology object basis class for mesh creating implementation module.
std::string LoadFile(const std::filesystem::path &FilePath)
Definition: files_load.cpp:12