libcryfs/CryFile.h

30 lines
541 B
C
Raw Normal View History

#pragma once
#ifndef CRYFS_LIB_CRYFILE_H_
#define CRYFS_LIB_CRYFILE_H_
2015-02-17 01:02:15 +01:00
#include <messmer/fspp/fs_interface/File.h>
#include "CryNode.h"
2014-12-09 17:19:59 +01:00
#include "impl/FileBlock.h"
2014-12-09 11:28:52 +01:00
namespace cryfs {
2014-11-16 00:05:28 +01:00
class CryFile: public fspp::File, CryNode {
public:
2014-12-09 17:19:59 +01:00
CryFile(std::unique_ptr<FileBlock> block);
virtual ~CryFile();
2014-11-16 00:05:28 +01:00
std::unique_ptr<fspp::OpenFile> open(int flags) const override;
void truncate(off_t size) const override;
void unlink() override;
private:
2014-12-09 17:19:59 +01:00
std::unique_ptr<FileBlock> _block;
2014-12-09 11:28:52 +01:00
DISALLOW_COPY_AND_ASSIGN(CryFile);
};
2014-12-07 08:57:23 +01:00
}
#endif