(svn r26108) -Codechange: some coding style (whitespace)
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
#include "sound_driver.hpp"
|
||||
|
||||
/** Implementation of the allegro sound driver. */
|
||||
class SoundDriver_Allegro: public SoundDriver {
|
||||
class SoundDriver_Allegro : public SoundDriver {
|
||||
public:
|
||||
/* virtual */ const char *Start(const char * const *param);
|
||||
|
||||
|
@@ -14,7 +14,7 @@
|
||||
|
||||
#include "sound_driver.hpp"
|
||||
|
||||
class SoundDriver_Cocoa: public SoundDriver {
|
||||
class SoundDriver_Cocoa : public SoundDriver {
|
||||
public:
|
||||
/* virtual */ const char *Start(const char * const *param);
|
||||
|
||||
|
@@ -15,7 +15,7 @@
|
||||
#include "sound_driver.hpp"
|
||||
|
||||
/** Implementation of the null sound driver. */
|
||||
class SoundDriver_Null: public SoundDriver {
|
||||
class SoundDriver_Null : public SoundDriver {
|
||||
public:
|
||||
/* virtual */ const char *Start(const char * const *param) { return NULL; }
|
||||
|
||||
|
@@ -15,7 +15,7 @@
|
||||
#include "sound_driver.hpp"
|
||||
|
||||
/** Implementation of the SDL sound driver. */
|
||||
class SoundDriver_SDL: public SoundDriver {
|
||||
class SoundDriver_SDL : public SoundDriver {
|
||||
public:
|
||||
/* virtual */ const char *Start(const char * const *param);
|
||||
|
||||
|
@@ -15,7 +15,7 @@
|
||||
#include "../driver.h"
|
||||
|
||||
/** Base for all sound drivers. */
|
||||
class SoundDriver: public Driver {
|
||||
class SoundDriver : public Driver {
|
||||
public:
|
||||
/** Called once every tick */
|
||||
virtual void MainLoop() {}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
#include "sound_driver.hpp"
|
||||
|
||||
/** Implementation of the sound driver for Windows. */
|
||||
class SoundDriver_Win32: public SoundDriver {
|
||||
class SoundDriver_Win32 : public SoundDriver {
|
||||
public:
|
||||
/* virtual */ const char *Start(const char * const *param);
|
||||
|
||||
|
Reference in New Issue
Block a user