git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1822 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
338 B
C++
24 lines
338 B
C++
/**
|
|
* @file MidiServerApp.h
|
|
*
|
|
* @author Matthijs Hollemans
|
|
*/
|
|
|
|
#ifndef MIDI_SERVER_APP_H
|
|
#define MIDI_SERVER_APP_H
|
|
|
|
#include <Application.h>
|
|
|
|
/**
|
|
* The BApplication that drives the midi_server.
|
|
*/
|
|
class MidiServerApp : public BApplication
|
|
{
|
|
public:
|
|
MidiServerApp();
|
|
virtual void AboutRequested();
|
|
};
|
|
|
|
#endif // MIDI_SERVER_APP_H
|
|
|