#include <cdrfiltr.h>
Inheritance diagram for CDRAttributeStoredItem:
Public Member Functions | |
CDRAttributeStoredItem (void) | |
Constructor. | |
~CDRAttributeStoredItem () | |
Destructor. | |
BOOL | Aquire (RIFFFile *RIFF) |
Destructor. | |
Protected Attributes | |
INT32 | Size |
ADDR | Block |
Private Member Functions | |
CC_DECLARE_MEMDUMP (CDRAttributeStoredItem) | |
Friends | |
class | CDRAttributeStore |
class | CDRArrowheadStore |
class | CDRArrowheadStoredItem |
class | CDRFontnameStore |
Definition at line 162 of file cdrfiltr.h.
|
Constructor.
Definition at line 4902 of file cdrfiltr.cpp. 04903 { 04904 Block = 0; 04905 }
|
|
Destructor.
Definition at line 4921 of file cdrfiltr.cpp.
|
|
Destructor.
Definition at line 4940 of file cdrfiltr.cpp. 04941 { 04942 ERROR3IF(Block != 0, "CDRAttributeStoredItem already has data"); 04943 04944 Size = RIFF->GetObjSize(); 04945 04946 // get a block of memory 04947 if((Block = (ADDR)CCMalloc(Size)) == 0) 04948 return FALSE; 04949 04950 // get the data of the object into it 04951 if(!RIFF->GetChunkData(Block, Size)) 04952 return FALSE; 04953 04954 // bye 04955 return TRUE; 04956 }
|
|
|
|
Reimplemented in CDRArrowheadStoredItem. Definition at line 165 of file cdrfiltr.h. |
|
Definition at line 166 of file cdrfiltr.h. |
|
Reimplemented in CDRFontnameStoredItem, CDRArrowheadStoredItem, and CDRBitmapStoredItem. Definition at line 164 of file cdrfiltr.h. |
|
Reimplemented in CDRFontnameStoredItem. Definition at line 167 of file cdrfiltr.h. |
|
Definition at line 179 of file cdrfiltr.h. |
|
Definition at line 178 of file cdrfiltr.h. |