mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 23:04:48 +01:00
35edda8f0b
refreshed git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40280 a95241bf-73f2-0310-859d-f6bbb57e9c96
48 lines
828 B
C++
48 lines
828 B
C++
/*
|
|
* Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _HAIKU__PACKAGE__PRIVATE__TEMPFILE_MANAGER_H_
|
|
#define _HAIKU__PACKAGE__PRIVATE__TEMPFILE_MANAGER_H_
|
|
|
|
|
|
#include <Directory.h>
|
|
#include <Entry.h>
|
|
#include <String.h>
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
namespace Haiku {
|
|
|
|
namespace Package {
|
|
|
|
namespace Private {
|
|
|
|
|
|
class TempfileManager {
|
|
public:
|
|
TempfileManager();
|
|
~TempfileManager();
|
|
|
|
void SetBaseDirectory(const BDirectory& baseDir);
|
|
|
|
BEntry Create(const BString& baseName = kDefaultName);
|
|
|
|
private:
|
|
static const BString kDefaultName;
|
|
|
|
private:
|
|
BDirectory fBaseDirectory;
|
|
vint32 fNextNumber;
|
|
};
|
|
|
|
|
|
} // namespace Private
|
|
|
|
} // namespace Package
|
|
|
|
} // namespace Haiku
|
|
|
|
|
|
#endif // _HAIKU__PACKAGE__PRIVATE__TEMPFILE_MANAGER_H_
|