You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
363 B

#ifndef __SYNTHAPP_H__
#define __SYNTHAPP_H__
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include <portaudio.h>
#include <portmidi.h>
#include "synth/synth.h"
class SynthApp : public wxApp {
public:
PaStream* paStream;
PmStream* pmStream;
Synth synth;
virtual bool OnInit();
virtual int OnExit();
};
#endif