18 lines
266 B
C++
18 lines
266 B
C++
#pragma once
|
|
#ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_BLOBONBLOCKS_H_
|
|
#define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_BLOBONBLOCKS_H_
|
|
|
|
namespace blobstore {
|
|
namespace onblocks {
|
|
|
|
class BlobOnBlocks {
|
|
public:
|
|
BlobOnBlocks();
|
|
virtual ~BlobOnBlocks();
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|