#include <ARGV.h>
Collaboration diagram for ACE_ARGV_Queue_Entry_T< CHAR_TYPE >:

Public Member Functions | |
| ACE_ARGV_Queue_Entry_T (void) | |
| Initialize a ACE_ARGV_Queue_Entry_T. | |
| ACE_ARGV_Queue_Entry_T (const CHAR_TYPE *arg, bool quote_arg) | |
| ACE_ARGV_Queue_Entry_T (const ACE_ARGV_Queue_Entry_T< CHAR_TYPE > &entry) | |
| ~ACE_ARGV_Queue_Entry_T (void) | |
| void | dump (void) const |
| Dump the state of this object. | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| const CHAR_TYPE * | arg_ |
| Pointer to the argument. | |
| bool | quote_arg_ |
| The argument need to be quoted while adding to the vector. | |
Definition at line 35 of file ARGV.h.
|
||||||||||
|
Initialize a ACE_ARGV_Queue_Entry_T.
Definition at line 10 of file ARGV.inl.
00011 : arg_(0), 00012 quote_arg_(false) 00013 { 00014 // No-op 00015 } |
|
||||||||||||||||
|
Initialize a ACE_ARGV_Queue_Entry_T.
Definition at line 18 of file ARGV.inl.
00020 : arg_(arg), 00021 quote_arg_(quote_arg) 00022 { 00023 // No-op 00024 } |
|
||||||||||
|
Initialize a ACE_ARGV_Queue_Entry_T.
Definition at line 27 of file ARGV.inl.
00028 : arg_(entry.arg_), 00029 quote_arg_(entry.quote_arg_) 00030 { 00031 // No-op 00032 } |
|
||||||||||
|
We need this destructor to keep some compilers from complaining. It's just a no-op, however. Definition at line 35 of file ARGV.inl.
00036 {
00037 // No-op just to keep some compilers happy...
00038 }
|
|
||||||||||
|
Dump the state of this object.
Definition at line 25 of file ARGV.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TEXT, ACE_TRACE, and LM_DEBUG.
00026 {
00027 #if defined (ACE_HAS_DUMP)
00028 ACE_TRACE ("ACE_ARGV_Queue_Entry_T::dump");
00029
00030 ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00031 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("arg_ = %s"), this->arg_));
00032 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("quote_arg_ = %d"), (int)this->quote_arg_));
00033 ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00034 #endif /* ACE_HAS_DUMP */
00035 }
|
|
|||||
|
|
|
|||||
|
Pointer to the argument.
Definition at line 71 of file ARGV.h. Referenced by ACE_ARGV_T< CHAR_TYPE >::create_buf_from_queue(). |
|
|||||
|
The argument need to be quoted while adding to the vector.
Definition at line 74 of file ARGV.h. Referenced by ACE_ARGV_T< CHAR_TYPE >::create_buf_from_queue(). |
1.3.6