mirror of
https://review.haiku-os.org/haiku
synced 2025-01-26 08:17:59 +01:00
5fb1c6ff1f
public and private API (still far from ideal, but a start): * moved several HPKG-classes into the public namespace BPackageKit::HPKG * added fImpl-wrappers around PackageReader and PackageWriter to hide most of the gory details * adjusted 'package'-binary and packagefs accordingly git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40320 a95241bf-73f2-0310-859d-f6bbb57e9c96
38 lines
457 B
C++
38 lines
457 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__FD_CLOSER_H_
|
|
#define _PACKAGE__HPKG__FD_CLOSER_H_
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
struct FDCloser {
|
|
FDCloser(int fd)
|
|
:
|
|
fFD(fd)
|
|
{
|
|
}
|
|
|
|
~FDCloser()
|
|
{
|
|
if (fFD >= 0)
|
|
close(fFD);
|
|
}
|
|
|
|
private:
|
|
int fFD;
|
|
};
|
|
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__FD_CLOSER_H_
|