xref: /haiku/src/preferences/time/TimeZoneListView.h (revision 3b07762c548ec4016dea480d1061577cd15ec614)
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 	virtual						~TimeZoneListView();
19 
20 protected:
21 	virtual	bool				GetToolTipAt(BPoint point, BToolTip** _tip);
22 };
23 
24 
25 #endif	// _TIME_ZONE_LIST_VIEW_H
26