#include <ISupportsFileSpecification.h>
Inheritance diagram for mx::ISupportsFileSpecification:
Public Member Functions | |
virtual void | setFilename (const mxmString &filename)=0 |
Allows for specifying a file via its name in the file system. | |
virtual void | setFileDescriptor (int fd)=0 |
Allows for specifying a file via the low-level descriptor of an already opened file. |
Various specification methods exist. If more than one is used, that one takes effect that was called last prior to the actual I/O initiation.
[khe]
Kai Hergenroether
|
Allows for specifying a file via the low-level descriptor of an already opened file. The file will not be closed automatically when the implementing object is destroyed. Implemented in mx::FileWriter, and mx::StreamFile. |
|
Allows for specifying a file via its name in the file system. The implementing object will open the file when I/O is activated. Likewise, the file will automatically be closed when the object dies. Implemented in mx::FileWriter, and mx::StreamFile. |