mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 20:38:11 +08:00
9697f95b8f
This reverts commit 15d999759e
.
19 lines
276 B
C++
19 lines
276 B
C++
#pragma once
|
|
#include "../acl_cpp_define.hpp"
|
|
#include "istream.hpp"
|
|
|
|
namespace acl {
|
|
|
|
/**
|
|
* 标准输入流,该类对象仅能进行读操作
|
|
*/
|
|
|
|
class ACL_CPP_API stdin_stream : public istream
|
|
{
|
|
public:
|
|
stdin_stream(void);
|
|
~stdin_stream(void);
|
|
};
|
|
|
|
} // namespace acl
|