mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 00:31:10 +01:00
bf3c519183
* directoryiterator: Fix missing inline Add missing inline to inline function. This was found with clang-tidy check: misc-definitions-in-headers * Convert deprecated throw() to noexcept throw() has been deprecated in standar in C++17. It has been removed in C++20. Code still compiles but let's just define these at those should be. These where found with clang-tidy check: modernize-use-noexcept * Fix unnecessary copy initializations Clang-tidy did find these with check: performance-unnecessary-copy-initialization * Fix some strings not references Looks like these are just missing reference marks. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
73 lines
1.1 KiB
C++
73 lines
1.1 KiB
C++
//
|
|
// DirectoryIterator_UNIX.h
|
|
//
|
|
// Library: Foundation
|
|
// Package: Filesystem
|
|
// Module: DirectoryIterator
|
|
//
|
|
// Definition of the DirectoryIteratorImpl class for UNIX.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_DirectoryIterator_UNIX_INCLUDED
|
|
#define Foundation_DirectoryIterator_UNIX_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include <dirent.h>
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
class Foundation_API DirectoryIteratorImpl
|
|
{
|
|
public:
|
|
DirectoryIteratorImpl(const std::string& path);
|
|
~DirectoryIteratorImpl();
|
|
|
|
void duplicate();
|
|
void release();
|
|
|
|
const std::string& get() const;
|
|
const std::string& next();
|
|
|
|
private:
|
|
DIR* _pDir;
|
|
std::string _current;
|
|
int _rc;
|
|
};
|
|
|
|
|
|
//
|
|
// inlines
|
|
//
|
|
inline const std::string& DirectoryIteratorImpl::get() const
|
|
{
|
|
return _current;
|
|
}
|
|
|
|
|
|
inline void DirectoryIteratorImpl::duplicate()
|
|
{
|
|
++_rc;
|
|
}
|
|
|
|
|
|
inline void DirectoryIteratorImpl::release()
|
|
{
|
|
if (--_rc == 0)
|
|
delete this;
|
|
}
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
#endif // Foundation_DirectoryIterator_UNIX_INCLUDED
|