#include <ccfile.h>
Inheritance diagram for CCOleAccusoftStream:
Public Member Functions | |
CCOleAccusoftStream (IStream *pIStream=0, UINT32 bufferSize=(1024), BOOL ErrorReporting=TRUE, BOOL ExceptionThrowing=FALSE) | |
Like its base class, CCOleStream, but redirects the Accusoft libraries to use a different stream as well. | |
CCOleAccusoftStream (PathName path, INT32 fileMode, INT32 fileAccess=filebuf::_Openprot, UINT32 bufferSize=(1024), BOOL ErrorReporting=TRUE, BOOL ExceptionThrowing=FALSE) | |
Like its base class, CCOleStream, but redirects the Accusoft libraries to use a different stream as well. | |
virtual | ~CCOleAccusoftStream () |
Definition at line 724 of file ccfile.h.
|
Like its base class, CCOleStream, but redirects the Accusoft libraries to use a different stream as well.
Definition at line 4296 of file ccfile.cpp. 04298 : CCOleStream(pIStream, bufferSize, ErrorReporting, ExceptionThrowing) 04299 { 04300 // TRACEUSER( "JustinF", _T("CCOleAccusoftStream redirecting Accusoft ...\n")); 04301 AccusoftFilters::RedirectStream(); 04302 }
|
|
Like its base class, CCOleStream, but redirects the Accusoft libraries to use a different stream as well.
Definition at line 4321 of file ccfile.cpp. 04323 : CCOleStream(path, nMode, nAccess, cbSize, fReport, fThrow) 04324 { 04325 // TRACEUSER( "JustinF", _T("CCOleAccusoftStream redirecting Accusoft ...\n")); 04326 AccusoftFilters::RedirectStream(); 04327 }
|
|
Definition at line 4341 of file ccfile.cpp. 04342 { 04343 AccusoftFilters::UnredirectStream(); 04344 // TRACEUSER( "JustinF", _T("CCOleAccusoftStream un-redirecting Accusoft ...\n")); 04345 }
|