mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-13 16:35:35 +08:00
18 lines
275 B
C++
18 lines
275 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
|