00001 /* -*- C++ -*- */ 00002 // $Id: Get_Opt.i,v 1.1.1.3 2003/02/21 18:36:32 chad Exp $ 00003 00004 // Get_Opt.i 00005 00006 ACE_INLINE int 00007 ACE_Get_Opt::ACE_Get_Opt_Long_Option::operator < (const ACE_Get_Opt_Long_Option &rhs) 00008 { 00009 return this->name_ < rhs.name_; 00010 } 00011 00012 ACE_INLINE int 00013 ACE_Get_Opt::argc (void) const 00014 { 00015 return this->argc_; 00016 } 00017 00018 ACE_INLINE ACE_TCHAR ** 00019 ACE_Get_Opt::argv (void) const 00020 { 00021 return this->argv_; 00022 } 00023 00024 ACE_INLINE ACE_TCHAR* 00025 ACE_Get_Opt::opt_arg (void) const 00026 { 00027 return this->optarg; 00028 } 00029 00030 ACE_INLINE int 00031 ACE_Get_Opt::opt_opt (void) 00032 { 00033 return this->optopt_; 00034 } 00035 00036 ACE_INLINE int & 00037 ACE_Get_Opt::opt_ind (void) 00038 { 00039 return this->optind; 00040 } 00041 00042 ACE_INLINE const ACE_TCHAR * 00043 ACE_Get_Opt::optstring (void) const 00044 { 00045 return this->optstring_.c_str (); 00046 }
1.2.14 written by Dimitri van Heesch,
© 1997-2002