mirror of
https://github.com/xtjoeytx/GServer-v2.git
synced 2026-05-07 08:09:52 -04:00
75393a0a1a
Sorted includes. Converted dependencies to brackets. Use relative path for includes.
16 lines
362 B
C++
16 lines
362 B
C++
#ifndef UTILITIES_STRINGUTILS_H
|
|
#define UTILITIES_STRINGUTILS_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <CString.h>
|
|
|
|
namespace utilities
|
|
{
|
|
std::string retokenizeArray(const std::vector<CString>& triggerData, int start_idx = 0);
|
|
CString retokenizeCStringArray(const std::vector<CString>& triggerData, int start_idx = 0);
|
|
} // namespace utilities
|
|
|
|
#endif
|