Inheritance diagram for StyleRecordReference:
Public Member Functions | |
StyleRecordReference (const Style &StyleExported, XFileRef Ref=XFILEREF_ERROR) | |
RecordReferenceItem * | CreateCopy (const XFileRef &NewReference) const |
Creates a copy of this StyleRecordReference with the given NewReference. | |
virtual BOOL | operator== (const RecordReferenceItem &Other) const |
Two StyleRecordReference's are equal if the addresses of the Style's they represent are equal. | |
const Style & | GetStyle () const |
Private Attributes | |
const Style & | m_StyleExported |
Definition at line 172 of file styles.cpp.
|
Definition at line 177 of file styles.cpp. 00177 : 00178 RecordReferenceItem(Ref), 00179 m_StyleExported(StyleExported) {}
|
|
Creates a copy of this StyleRecordReference with the given NewReference.
Implements RecordReferenceItem. Definition at line 1985 of file styles.cpp. 01986 { 01987 return new StyleRecordReference(m_StyleExported, NewReference); 01988 }
|
|
Definition at line 184 of file styles.cpp. 00184 { return m_StyleExported; }
|
|
Two StyleRecordReference's are equal if the addresses of the Style's they represent are equal.
Implements RecordReferenceItem. Definition at line 2003 of file styles.cpp. 02004 { 02005 ENSURE_KIND((&Other), StyleRecordReference); 02006 StyleRecordReference& OtherStyle = (StyleRecordReference&) Other; 02007 02008 return &(GetStyle()) == &(OtherStyle.GetStyle()); 02009 }
|
|
Definition at line 187 of file styles.cpp. |