This commit is contained in:
Jean-Philip Desjardins 2018-08-26 20:22:38 -04:00
parent 3d4196c6fd
commit 1b3a23d250

View File

@ -1,5 +1,4 @@
#ifndef _IOMAN_DEVICE_H_
#define _IOMAN_DEVICE_H_
#pragma once
#include "Stream.h"
@ -21,12 +20,8 @@ namespace Iop
OPEN_FLAG_NOWAIT = 0x00008000,
};
virtual ~CDevice()
{
}
virtual ~CDevice() = default;
virtual Framework::CStream* GetFile(uint32, const char*) = 0;
};
}
}
#endif