#include <tmpltarg.h>
Inheritance diagram for WizOp:
Public Member Functions | |
WizOp (const StringBase &InternalName, const StringBase &UserName, const StringBase &ParamHint) | |
This constructor provides the Wizard Properties with something to talk about. | |
const StringBase & | GetInternalName () const |
Allows access to the WizOp's vital statistics. | |
const StringBase & | GetUserName () const |
const StringBase & | GetParamHint () const |
Private Member Functions | |
CC_DECLARE_MEMDUMP (WizOp) | |
Private Attributes | |
const String_256 | m_Name |
const String_256 | m_UserName |
const String_256 | m_ParamHint |
Definition at line 120 of file tmpltarg.h.
|
This constructor provides the Wizard Properties with something to talk about.
Definition at line 524 of file tmpltarg.cpp. 00525 : 00526 m_Name(InternalName), 00527 m_UserName(UserName), 00528 m_ParamHint(ParamHint) 00529 { 00530 }
|
|
|
|
Allows access to the WizOp's vital statistics.
Definition at line 547 of file tmpltarg.cpp. 00548 { 00549 return (StringBase&)m_Name; 00550 }
|
|
Definition at line 559 of file tmpltarg.cpp. 00560 { 00561 return (StringBase&)m_ParamHint; 00562 }
|
|
Definition at line 553 of file tmpltarg.cpp. 00554 { 00555 return (StringBase&)m_UserName; 00556 }
|
|
Definition at line 134 of file tmpltarg.h. |
|
Definition at line 136 of file tmpltarg.h. |
|
Definition at line 135 of file tmpltarg.h. |