libcryfs/implementations/inmemory/InMemoryBlock.h
2015-02-17 00:23:33 +01:00

33 lines
639 B
C++

#pragma once
#ifndef BLOCKSTORE_IMPLEMENTATIONS_INMEMORY_INMEMORYBLOCK_H_
#define BLOCKSTORE_IMPLEMENTATIONS_INMEMORY_INMEMORYBLOCK_H_
#include <messmer/blockstore/interface/Block.h>
#include <messmer/blockstore/utils/Data.h>
namespace blockstore {
namespace inmemory {
class InMemoryBlockStore;
class InMemoryBlock: public Block {
public:
InMemoryBlock(const Key &key, size_t size);
InMemoryBlock(const InMemoryBlock &rhs);
virtual ~InMemoryBlock();
void *data() override;
const void *data() const override;
void flush() override;
size_t size() const override;
private:
std::shared_ptr<Data> _data;
};
}
}
#endif