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
acl
Definition:
acl_cpp_init.hpp:4
acl::ofstream
Definition:
ofstream.hpp:7
fstream.hpp
ACL_CPP_API
#define ACL_CPP_API
Definition:
acl_cpp_define.hpp:16
acl::fstream
Definition:
fstream.hpp:10
include
acl_cpp
stream
ofstream.hpp
生成于 2021年 九月 10日 星期五 11:14:45 , 为 acl使用
1.8.15