#include <styles.h>
Inheritance diagram for Style:
Public Member Functions | |
virtual | ~Style ()=0 |
Bizzaro pure implementation. | |
virtual Style * | CreateCopy (const StringBase &NewName) const =0 |
virtual BOOL | operator== (const Style &OtherStyle) const |
Compares two Style's. | |
const StringBase & | GetName () const |
Derived class data member access. | |
Protected Member Functions | |
Style (const StringBase &Name) | |
Constructs a Style of the given Name and thereby makes sure this Style has a name (unless you give it an empty string). | |
BOOL | SetName (const StringBase &Name) |
Private Attributes | |
String_64 | m_Name |
Definition at line 120 of file styles.h.
|
Bizzaro pure implementation.
Definition at line 375 of file styles.cpp.
|
|
Constructs a Style of the given Name and thereby makes sure this Style has a name (unless you give it an empty string).
Definition at line 358 of file styles.cpp. 00359 { 00360 SetName(Name); 00361 }
|
|
Implemented in WizOpStyle. |
|
Derived class data member access.
Definition at line 410 of file styles.cpp. 00411 { 00412 return m_Name; 00413 }
|
|
Compares two Style's.
Reimplemented in WizOpStyle. Definition at line 392 of file styles.cpp.
|
|
Definition at line 416 of file styles.cpp.
|
|
|