mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 01:08:35 +00:00
17 lines
268 B
C++
17 lines
268 B
C++
// -*- C++ -*-
|
|
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
|