#include <Parse_Node.h>
Inheritance diagram for ACE_Resume_Node:


Public Methods | |
| ACE_Resume_Node (const ACE_TCHAR *name) | |
| ~ACE_Resume_Node (void) | |
| virtual void | apply (int &yyerrno) |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Definition at line 97 of file Parse_Node.h.
|
|
Definition at line 163 of file Parse_Node.cpp. References ACE_TCHAR, and ACE_TRACE.
00164 : ACE_Parse_Node (name) 00165 { 00166 ACE_TRACE ("ACE_Resume_Node::ACE_Resume_Node"); 00167 } |
|
|
Definition at line 12 of file Parse_Node.i.
00013 {
00014 }
|
|
|
Implements ACE_Parse_Node. Definition at line 185 of file Parse_Node.cpp. References ACE_DEBUG, ACE_LIB_TEXT, ACE_TRACE, ACE::debug, LM_DEBUG, and ACE_Service_Config::resume.
00186 {
00187 ACE_TRACE ("ACE_Resume_Node::apply");
00188 if (ACE_Service_Config::resume (this->name ()) == -1)
00189 yyerrno++;
00190
00191 if (ACE::debug ())
00192 ACE_DEBUG ((LM_DEBUG,
00193 ACE_LIB_TEXT ("did resume on %s, error = %d\n"),
00194 this->name (),
00195 yyerrno));
00196 }
|
|
|
Dump the state of an object.
Reimplemented from ACE_Parse_Node. Definition at line 158 of file Parse_Node.cpp. References ACE_TRACE.
00159 {
00160 ACE_TRACE ("ACE_Resume_Node::dump");
00161 }
|
|
|
Declare the dynamic allocation hooks.
Reimplemented from ACE_Parse_Node. Definition at line 109 of file Parse_Node.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002