00001 // -*- C++ -*- 00002 // 00003 // Get_Opt.inl,v 4.2 2005/10/28 16:14:52 ossama Exp 00004 00005 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE bool 00008 ACE_Get_Opt::ACE_Get_Opt_Long_Option::operator < (const ACE_Get_Opt_Long_Option &rhs) 00009 { 00010 return this->name_ < rhs.name_; 00011 } 00012 00013 ACE_INLINE int 00014 ACE_Get_Opt::argc (void) const 00015 { 00016 return this->argc_; 00017 } 00018 00019 ACE_INLINE ACE_TCHAR ** 00020 ACE_Get_Opt::argv (void) const 00021 { 00022 return this->argv_; 00023 } 00024 00025 ACE_INLINE ACE_TCHAR* 00026 ACE_Get_Opt::opt_arg (void) const 00027 { 00028 return this->optarg; 00029 } 00030 00031 ACE_INLINE int 00032 ACE_Get_Opt::opt_opt (void) 00033 { 00034 return this->optopt_; 00035 } 00036 00037 ACE_INLINE int & 00038 ACE_Get_Opt::opt_ind (void) 00039 { 00040 return this->optind; 00041 } 00042 00043 ACE_END_VERSIONED_NAMESPACE_DECL