acl  3.5.3.0
ofstream.hpp
浏览该文件的文档.
1 #pragma once
2 #include "../acl_cpp_define.hpp"
3 #include "fstream.hpp"
4 
5 namespace acl {
6 
7 class ACL_CPP_API ofstream : public fstream
8 {
9 public:
10  ofstream(void);
11  virtual ~ofstream(void);
12 
13  /**
14  * 以只写方式打开文件,如果文件不存在则创建新文件
15  * @param path {const char*} 文件名
16  * @param otrunc {bool} 若文件存在,则打开文件时是否需要先清空该文件
17  * @return {bool} 是否成功
18  */
19  bool open_write(const char* path, bool otrunc = true);
20 
21  /**
22  * 以尾部添加方式打开文件,如果文件不存在则创建新文件
23  * @param path {const char*} 文件名
24  * @return {bool} 是否成功
25  */
26  bool open_append(const char* path);
27 };
28 
29 } // namespace acl
#define ACL_CPP_API