Fixed gcc 4 build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15010 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-11-17 22:53:30 +00:00
parent d8e2fb507a
commit 65f512e089
5 changed files with 13 additions and 7 deletions

View File

@ -7,6 +7,8 @@
#include <Synth.h>
#include <MidiDefs.h>
class BSynth;
class BMidiSynth : public BMidi
{
public:

View File

@ -87,8 +87,8 @@ public:
private:
friend BMidiSynth;
friend BMidiSynthFile;
friend class BMidiSynth;
friend class BMidiSynthFile;
virtual void _ReservedSynth1();
virtual void _ReservedSynth2();

View File

@ -21,8 +21,9 @@
* DEALINGS IN THE SOFTWARE.
*/
#include <MidiSynth.h>
#include "debug.h"
#include "MidiSynth.h"
#include "SoftSynth.h"
using namespace BPrivate;

View File

@ -59,6 +59,8 @@
class BMidiConsumer;
class BMidiLocalProducer;
class BMidiSynth;
class BSynth;
namespace BPrivate {
@ -118,8 +120,8 @@ public:
private:
friend class BSynth;
friend class BMidiSynth;
friend class ::BSynth;
friend class ::BMidiSynth;
BSoftSynth();
~BSoftSynth();

View File

@ -26,6 +26,7 @@
#include <Looper.h>
#include <Message.h>
class BMidiProducer;
class BMidiRoster;
namespace BPrivate {
@ -71,8 +72,8 @@ public:
private:
friend class BMidiRoster;
friend class BMidiProducer;
friend class ::BMidiRoster;
friend class ::BMidiProducer;
typedef BLooper super;