sculpto
split_string.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file split_string.h
3 * \brief Split string function implementation module.
4 *
5 * \author Sabitov Kirill
6 * \date 07 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "base.h"
12
13namespace scl
14{
15 /*!*
16 * Split strign function.
17 *
18 * \param String - string to split.
19 * \param Delimiter - delimiter character or string.
20 * \param[out] OutputSequence - array of cplitted by delimiter strings.
21 * \return count of splited strings.
22 */
23 u32 SplitString(const std::string &String, std::string &Delimiter, std::vector<std::string> &OutputSequence)
24 {
25 }
26}
Topology object basis class for mesh creating implementation module.
Definition: base.h:33
uint32_t u32
Definition: math_common.h:21
u32 SplitString(const std::string &String, std::string &Delimiter, std::vector< std::string > &OutputSequence)
Definition: split_string.h:23