mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
19 lines
335 B
C++
19 lines
335 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Dirent_Selector.inl 80826 2008-03-04 14:51:23Z wotte $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
ACE_INLINE int
|
|
ACE_Dirent_Selector::length (void) const
|
|
{
|
|
return n_;
|
|
}
|
|
|
|
ACE_INLINE ACE_DIRENT *
|
|
ACE_Dirent_Selector::operator[] (const int n) const
|
|
{
|
|
return this->namelist_[n];
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|