mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-20 10:30:01 +00:00
9746117f71
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@351 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
|