mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
14 lines
184 B
C++
14 lines
184 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
std::string ToString(const std::vector<std::string>& v);
|
|
|
|
} // namespace util
|
|
} // namespace scwx
|