xref: /haiku/src/preferences/time/TimeZoneListView.h (revision 204dee708a999d5a71d0cb9497650ee7cef85d0a)
1 /*
2  * Copyright 2012, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Sean Bailey <ziusudra@gmail.com>
7  */
8 #ifndef _TIME_ZONE_LIST_VIEW_H
9 #define _TIME_ZONE_LIST_VIEW_H
10 
11 
12 #include <OutlineListView.h>
13 
14 
15 class TimeZoneListView : public BOutlineListView {
16 public:
17 								TimeZoneListView(void);
18 								~TimeZoneListView();
19 
20 protected:
21 	virtual	bool				GetToolTipAt(BPoint point, BToolTip** _tip);
22 };
23 
24 
25 #endif	// _TIME_ZONE_LIST_VIEW_H
26