2005-12-11 10:25:27 +00:00
|
|
|
/* $Id$ */
|
2005-12-10 11:16:45 +00:00
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file cocoa_s.h Base for Cocoa sound handling. */
|
|
|
|
|
2005-12-10 11:16:45 +00:00
|
|
|
#ifndef SOUND_COCOA_H
|
|
|
|
#define SOUND_COCOA_H
|
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
#include "sound_driver.hpp"
|
2005-12-10 11:16:45 +00:00
|
|
|
|
2007-07-05 12:23:54 +00:00
|
|
|
class SoundDriver_Cocoa: public SoundDriver {
|
|
|
|
public:
|
|
|
|
/* virtual */ const char *Start(const char * const *param);
|
|
|
|
|
|
|
|
/* virtual */ void Stop();
|
2009-09-05 21:26:51 +00:00
|
|
|
/* virtual */ const char *GetName() const { return "cocoa"; }
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
|
|
|
|
2013-11-25 14:26:46 +00:00
|
|
|
class FSoundDriver_Cocoa : public DriverFactoryBase {
|
2007-07-05 12:23:54 +00:00
|
|
|
public:
|
2013-11-25 14:26:46 +00:00
|
|
|
FSoundDriver_Cocoa() : DriverFactoryBase(Driver::DT_SOUND, 10, "cocoa", "Cocoa Sound Driver") {}
|
|
|
|
/* virtual */ Driver *CreateInstance() const { return new SoundDriver_Cocoa(); }
|
2007-07-05 12:23:54 +00:00
|
|
|
};
|
2005-12-10 11:16:45 +00:00
|
|
|
|
2007-02-23 12:56:10 +00:00
|
|
|
#endif /* SOUND_COCOA_H */
|