|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class CCompletion { public: enum { normal, abruptBreak, abruptContinue, abruptReturn }; public: CCompletion(); CCompletion(int nForm); CCompletion(int nForm, const XValue &pValue); ~CCompletion(); public: const CCompletion &operator=(const CCompletion &source); int GetForm() const; XValue GetValue() const; };
Thie ECMAScript completion.
CValue
Constructor/Destructor Summary | |
CCompletion
();
����������Constructs the normal completion. |
|
CCompletion
(int nForm);
����������Constructs the completion not associated with any value. |
|
CCompletion
(int nForm, const XValue &pValue);
����������Constructs the completion associated with a value. |
|
~CCompletion
();
����������Destroys the completion. |
Function Summary | |
int
|
GetForm
();
����������Returns a form of this completion. |
XValue
|
GetValue
();
����������Returns a value associated with this completion. |
Constructor/Destructor Detail |
CCompletion();
Constructs the normal completion.
CCompletion(int nForm);
Constructs the completion not associated with any value.
The form of the constructed completion must be specified
by
nForm
parameter;
the allowed values are
CCompletion::normal
,
CCompletion::abruptBreak
, and
CCompletion::abruptContinue
.
nForm
- the form of this completionCCompletion(int nForm, const XValue &pValue);
Constructs the completion associated with a value.
The form of the constructed completion must be specified
by
nForm
parameter;
the allowed values are
CCompletion::normal
,
CCompletion::abruptBreak
,
CCompletion::abruptContinue
, and
CCompletion::abruptReturn
.
nForm
- the form of this completionpValue
- the value associated
with this completion~CCompletion();
Destroys the completion.
Function Detail |
int GetForm();
Returns a form of this completion.
XValue GetValue();
Returns a value associated with this completion.
NULL
if there is no value associated
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |