mirror of
https://github.com/ksherlock/profuse.git
synced 2025-02-02 20:30:22 +00:00
27 lines
514 B
C
27 lines
514 B
C
|
//
|
||
|
// SDKImage.h
|
||
|
// profuse
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 3/6/2011.
|
||
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include <Device/BlockDevice.h>
|
||
|
#include <Device/DiskImage.h>
|
||
|
|
||
|
namespace Device {
|
||
|
|
||
|
class SDKImage : public DiskImage
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
static BlockDevicePointer Open(const char *name);
|
||
|
|
||
|
|
||
|
private:
|
||
|
SDKImage();
|
||
|
SDKImage(const SDKImage &);
|
||
|
~SDKImage();
|
||
|
SDKImage & operator=(const SDKImage &);
|
||
|
};
|
||
|
}
|