1// PatchApp.h
2// ----------
3// The PatchBay application class.
4//
5// Copyright 1999, Be Incorporated.   All Rights Reserved.
6// This file may be used under the terms of the Be Sample Code License.
7
8#ifndef _PatchApp_h
9#define _PatchApp_h
10
11#include <Application.h>
12
13class TToolTip;
14
15class PatchApp : public BApplication
16{
17public:
18	PatchApp();
19	void ReadyToRun();
20	void MessageReceived(BMessage* msg);
21
22private:
23	TToolTip* m_toolTip;
24};
25
26#endif /* _PatchApp_h */
27