#include <Parse_Node.h>
Inheritance diagram for ACE_Resume_Node:
Public Member Functions | |
ACE_Resume_Node (const ACE_TCHAR *name) | |
~ACE_Resume_Node (void) | |
virtual void | apply (ACE_Service_Gestalt *cfg, int &yyerrno) |
Will update the yyereno member and/or the corresponding configuration. | |
void | dump (void) const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Member Functions | |
ACE_Resume_Node (const ACE_Resume_Node &) | |
ACE_Resume_Node & | operator= (const ACE_Resume_Node &) |
For internal use only.
Definition at line 114 of file Parse_Node.h.
|
Definition at line 167 of file Parse_Node.cpp. References ACE_TCHAR, and ACE_TRACE.
00168 : ACE_Parse_Node (name) 00169 { 00170 ACE_TRACE ("ACE_Resume_Node::ACE_Resume_Node"); 00171 } |
|
Definition at line 173 of file Parse_Node.cpp.
00174 { 00175 } |
|
|
|
Will update the yyereno member and/or the corresponding configuration.
Implements ACE_Parse_Node. Definition at line 195 of file Parse_Node.cpp. References ACE_DEBUG, ACE_LIB_TEXT, ACE_TRACE, ACE::debug(), LM_DEBUG, and ACE_Service_Gestalt::resume().
00196 { 00197 ACE_TRACE ("ACE_Resume_Node::apply"); 00198 00199 if (config->resume (this->name ()) == -1) 00200 ++yyerrno; 00201 00202 #ifndef ACE_NLOGGING 00203 if (ACE::debug ()) 00204 ACE_DEBUG ((LM_DEBUG, 00205 ACE_LIB_TEXT ("did resume on %s, error = %d\n"), 00206 this->name (), 00207 yyerrno)); 00208 #endif /* ACE_NLOGGING */ 00209 } |
|
Dump the state of an object.
Reimplemented from ACE_Parse_Node. Definition at line 160 of file Parse_Node.cpp. References ACE_TRACE.
00161 { 00162 #if defined (ACE_HAS_DUMP) 00163 ACE_TRACE ("ACE_Resume_Node::dump"); 00164 #endif /* ACE_HAS_DUMP */ 00165 } |
|
|
|
Declare the dynamic allocation hooks.
Reimplemented from ACE_Parse_Node. Definition at line 126 of file Parse_Node.h. |