#include "ace/Arg_Shifter.h"#include "ace/OS_NS_string.h"#include "ace/OS_NS_strings.h"#include "ace/OS_Errno.h"#include "ace/OS_Memory.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (ace, Arg_Shifter,"$Id: Arg_Shifter.cpp 83749 2008-11-14 18:39:10Z johnnyw $") 1 template< typename CHAR_TYPE > ACE_Arg_Shifter_T< CHAR_TYPE > | |
| ACE_RCSID | ( | ace | , | |
| Arg_Shifter | , | |||
| "$Id: Arg_Shifter.cpp 83749 2008-11-14 18:39:10Z johnnyw $" | ||||
| ) |
Definition at line 10 of file Arg_Shifter.cpp.
00012 : Arg_Shifter.cpp 83749 2008-11-14 18:39:10Z johnnyw $") 00013 00014 00015 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00016 00017 template <typename CHAR_TYPE> 00018 ACE_Arg_Shifter_T<CHAR_TYPE>::ACE_Arg_Shifter_T (int& argc, 00019 const CHAR_TYPE** argv, 00020 const CHAR_TYPE** temp) 00021 : argc_ (argc), 00022 total_size_ (argc), 00023 temp_ (temp), 00024 argv_ (argv), 00025 current_index_ (0), 00026 back_ (argc - 1), 00027 front_ (0) 00028 { 00029 this->init (); 00030 }
1.6.1