Files
itgmania212121/stepmania/src/arch/MemoryCard/MemoryCardDriver_Null.h
T

25 lines
715 B
C++
Raw Normal View History

2003-12-17 10:20:53 +00:00
#ifndef MEMORY_CARD_ENUMERATOR_NULL_H
#define MEMORY_CARD_ENUMERATOR_NULL_H 1
#include "MemoryCardDriver.h"
class MemoryCardDriver_Null : public MemoryCardDriver
{
public:
MemoryCardDriver_Null() {}
virtual bool StorageDevicesChanged() { return false; }
virtual void GetStorageDevices( vector<UsbStorageDevice>& vStorageDevicesOut ) {}
virtual bool MountAndTestWrite( UsbStorageDevice* pDevice, CString sMountPoint ) { return false; }
virtual void Unmount( UsbStorageDevice* pDevice, CString sMountPoint ) {}
virtual void Flush( UsbStorageDevice* pDevice ) {}
virtual void ResetUsbStorage() {}
2003-12-17 10:20:53 +00:00
};
#endif
/*
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
* Chris Danford
*/