mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
19 lines
271 B
C++
19 lines
271 B
C++
#pragma once
|
|
#include "../acl_cpp_define.hpp"
|
|
#include "ostream.hpp"
|
|
|
|
namespace acl {
|
|
|
|
/**
|
|
* 标准输出流,该类对象仅能进行写操作
|
|
*/
|
|
|
|
class ACL_CPP_API stdout_stream : public ostream
|
|
{
|
|
public:
|
|
stdout_stream();
|
|
~stdout_stream();
|
|
};
|
|
|
|
} // namespace acl
|