mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-22 05:30:03 +00:00
ac8bbd5265
git-svn-id: https://profuse.googlecode.com/svn/branches/profuse_interim@369 aa027e90-d47c-11dd-86d7-074df07e0730
25 lines
432 B
C++
25 lines
432 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 <ProFUSE/smart_pointers.h>
|
|
|
|
namespace Device {
|
|
|
|
class BlockDevice;
|
|
class BlockCache;
|
|
|
|
typedef SHARED_PTR(BlockDevice) BlockDevicePointer;
|
|
typedef SHARED_PTR(BlockCache) BlockCachePointer;
|
|
}
|
|
|
|
|
|
#endif
|