#include <cxfile.h>
Inheritance diagram for StandardDefaultRecordHandler:
Public Member Functions | |
StandardDefaultRecordHandler () | |
virtual UINT32 * | GetTagList () |
virtual BOOL | HandleRecord (CXaraFileRecord *pCXaraFileRecord) |
virtual void | IncProgressBarCount (UINT32 n) |
virtual BOOL | IsStreamed (UINT32 Tag) |
Function to find out if the record is streamed or not. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (StandardDefaultRecordHandler) |
Definition at line 391 of file cxfile.h.
|
Definition at line 397 of file cxfile.h. 00398 { 00399 #if defined(EXCLUDE_FROM_XARLIB) 00400 m_pfnRecordHandler = NULL; 00401 m_pMagic = NULL; 00402 #endif 00403 };
|
|
|
|
Implements CXaraFileRecordHandler. Definition at line 406 of file cxfile.h. 00406 { static UINT32 TagList[]={CXFRH_TAG_LIST_END}; return (UINT32*)TagList; }
|
|
Implements CXaraFileRecordHandler. Definition at line 594 of file cxfile.cpp. 00595 { 00596 ERROR2IF(pCXaraFileRecord == NULL,FALSE,"NULL record ptr"); 00597 #if !defined(EXCLUDE_FROM_XARLIB) 00598 return UnrecognisedTag(pCXaraFileRecord->GetTag()); 00599 #else 00600 00601 if (m_pfnRecordHandler) 00602 { 00603 return (m_pfnRecordHandler)(m_pMagic, pCXaraFileRecord); 00604 } 00605 00606 return(TRUE); 00607 #endif 00608 }
|
|
Reimplemented from CamelotRecordHandler. Definition at line 409 of file cxfile.h.
|
|
Function to find out if the record is streamed or not.
Reimplemented from CamelotRecordHandler. Definition at line 410 of file cxfile.h. 00410 { return FALSE; }
|