acl/lib_acl_cpp/include/acl_cpp/stream/stdin_stream.hpp

19 lines
296 B
C++
Raw Normal View History

#pragma once
2017-06-02 14:47:24 +08:00
#include "../acl_cpp_define.hpp"
#include "istream.hpp"
namespace acl {
/**
*
*/
class ACL_CPP_API stdin_stream : public istream
{
public:
2019-07-07 11:00:12 +08:00
stdin_stream(void);
~stdin_stream(void);
};
} // namespace acl