mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:50:04 +00:00
13 lines
167 B
C++
13 lines
167 B
C++
#pragma once
|
|
|
|
#include <istream>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
std::istream& getline(std::istream& is, std::string& t);
|
|
|
|
} // namespace util
|
|
} // namespace scwx
|