2015-04-22 16:00:14 +02:00
|
|
|
#pragma once
|
|
|
|
#ifndef FSPP_SYMLINK_H_
|
|
|
|
#define FSPP_SYMLINK_H_
|
|
|
|
|
|
|
|
#include "Node.h"
|
2015-06-21 17:44:30 +02:00
|
|
|
#include <messmer/cpp-utils/pointer/unique_ref.h>
|
2015-04-22 16:00:14 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace fspp {
|
|
|
|
class Device;
|
|
|
|
|
|
|
|
class Symlink: public virtual Node {
|
|
|
|
public:
|
|
|
|
virtual ~Symlink() {}
|
|
|
|
|
2015-04-23 09:17:23 +02:00
|
|
|
virtual boost::filesystem::path target() const = 0;
|
2015-04-22 16:00:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|