mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-06 11:29:32 +00:00
2243d8d136
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@346 aa027e90-d47c-11dd-86d7-074df07e0730
28 lines
445 B
C++
28 lines
445 B
C++
//
|
|
// Device.h
|
|
// profuse
|
|
//
|
|
// Created by Kelvin Sherlock on 2/19/2011.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#ifndef __DEVICE_DEVICE_H__
|
|
#define __DEVICE_DEVICE_H__
|
|
|
|
#include <tr1/memory>
|
|
|
|
namespace Device {
|
|
|
|
class BlockDevice;
|
|
class BlockCache;
|
|
|
|
|
|
typedef std::tr1::shared_ptr<BlockDevice> BlockDevicePointer;
|
|
typedef std::tr1::shared_ptr<BlockCache> BlockCachePointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|