1/*
2 * Copyright 2009-2012, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef TOOL_TIP_WINDOW_H
6#define TOOL_TIP_WINDOW_H
7
8
9#include <Window.h>
10
11
12namespace BPrivate {
13
14
15class ToolTipWindow : public BWindow {
16public:
17							ToolTipWindow(BToolTip* tip, BPoint where,
18								void* owner);
19
20	virtual	void			MessageReceived(BMessage* message);
21
22private:
23			void*			fOwner;
24};
25
26
27}	// namespace BPrivate
28
29
30#endif	// TOOL_TIP_WINDOW_H
31