Removing AudioDriver.

This commit is contained in:
Ben Vanik
2014-01-13 00:05:08 -08:00
parent ae5b87ea2a
commit 20ad328e4a
13 changed files with 1 additions and 218 deletions

View File

@@ -1,39 +0,0 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2013 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XENIA_APU_AUDIO_DRIVER_H_
#define XENIA_APU_AUDIO_DRIVER_H_
#include <xenia/core.h>
namespace xe {
namespace apu {
class AudioDriver {
public:
virtual ~AudioDriver();
Memory* memory() const { return memory_; }
virtual void Initialize() = 0;
protected:
AudioDriver(Memory* memory);
Memory* memory_;
};
} // namespace apu
} // namespace xe
#endif // XENIA_APU_AUDIO_DRIVER_H_