#include <cmxexdc.h>
Inheritance diagram for CMXReferDefaultDotDash:
Public Member Functions | |
CMXReferDefaultDotDash (CMXExportDC *pDC) | |
INT32 | IsInWhichDesc (void) |
BOOL | WriteInDesc (CMXExportDC *pDC) |
writes the default dot dash list entry | |
BOOL | AreYouThisDotDash (DashRec *ptDash) |
Private Member Functions | |
CC_DECLARE_DYNAMIC (CMXReferDefaultDotDash) |
Definition at line 534 of file cmxexdc.h.
|
Definition at line 539 of file cmxexdc.h. 00539 : CMXReferDotDash(pDC) {};
|
|
Reimplemented from CMXReferDotDash. Definition at line 544 of file cmxexdc.h.
|
|
|
|
Reimplemented from CMXReferDotDash. Definition at line 541 of file cmxexdc.h. 00541 {return cmxDESC_DOTDASH;};
|
|
writes the default dot dash list entry
Reimplemented from CMXReferDotDash. Definition at line 574 of file cmxexdc.cpp. 00575 { 00576 WORD DotCount = 0; 00577 00578 if(!pDC->WriteTag(cmxTAG_DescrSection_Dash, &DotCount, sizeof(DotCount)) 00579 || !pDC->WriteMinEndTag()) 00580 return FALSE; 00581 00582 return TRUE; 00583 }
|