#include <ccafile.h>
Public Member Functions | |
async_fstream () | |
async_fstream (const char *name, INT32 mode, INT32 prot) | |
async_fstream (filedesc fd) | |
async_fstream (filedesc fd, char *sbuf, INT32 len) | |
Protected Member Functions | |
streambuf * | set_streambuf (streambuf *pbuf) |
Definition at line 234 of file ccafile.h.
|
Definition at line 714 of file ccafile.cpp. 00715 { 00716 set_streambuf(new asynchstreambuf); 00717 }
|
|
Definition at line 727 of file ccafile.cpp. 00728 { 00729 set_streambuf(new asynchstreambuf); 00730 open(name,mode,prot); 00731 }
|
|
Definition at line 741 of file ccafile.cpp. 00742 { 00743 set_streambuf(new asynchstreambuf); 00744 attach(fd); 00745 }
|
|
Definition at line 755 of file ccafile.cpp. 00756 { 00757 set_streambuf(new asynchstreambuf); 00758 setbuf(sbuf, len); 00759 attach(fd); 00760 }
|
|
Definition at line 770 of file ccafile.cpp.
|