1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef PACKAGE_SYMLINK_H
6#define PACKAGE_SYMLINK_H
7
8
9#include "PackageLeafNode.h"
10
11
12class PackageSymlink : public PackageLeafNode {
13public:
14								PackageSymlink(Package* package, mode_t mode);
15	virtual						~PackageSymlink();
16
17			status_t			SetSymlinkPath(const char* path);
18
19	virtual	const char*			SymlinkPath() const;
20
21private:
22				char*			fSymlinkPath;
23};
24
25
26#endif	// PACKAGE_SYMLINK_H
27