1
0
Fork 0

made interface destructors virtual

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1656
This commit is contained in:
Ulf Wohlers 2004-02-03 14:59:58 +00:00
parent 00b7c5122e
commit 3001a346b2

View file

@ -52,7 +52,7 @@ class CDROM_Interface_SDL : public CDROM_Interface
{
public:
CDROM_Interface_SDL (void);
~CDROM_Interface_SDL (void);
virtual ~CDROM_Interface_SDL(void);
bool SetDevice (char* path, int forceCD);
bool GetUPC (unsigned char& attr, char* upc) { attr = 0; strcpy(upc,"UPC"); return true; };
@ -104,7 +104,7 @@ class CDROM_Interface_Aspi : public CDROM_Interface
{
public:
CDROM_Interface_Aspi (void);
~CDROM_Interface_Aspi (void);
virtual ~CDROM_Interface_Aspi(void);
bool SetDevice (char* path, int forceCD);
@ -151,7 +151,7 @@ class CDROM_Interface_Ioctl : public CDROM_Interface
{
public:
CDROM_Interface_Ioctl (void);
~CDROM_Interface_Ioctl (void);
virtual ~CDROM_Interface_Ioctl(void);
bool SetDevice (char* path, int forceCD);