tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / time / TimeZoneListView.h
blobb70764d1d8aac90f6395cd697b142509d5de1b96
1 /*
2 * Copyright 2012, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Sean Bailey <ziusudra@gmail.com>
7 */
8 #ifndef _TIME_ZONE_LIST_VIEW_H
9 #define _TIME_ZONE_LIST_VIEW_H
12 #include <DateFormat.h>
13 #include <OutlineListView.h>
14 #include <TimeFormat.h>
17 class TimeZoneListView : public BOutlineListView {
18 public:
19 TimeZoneListView(void);
20 virtual ~TimeZoneListView();
22 protected:
23 virtual bool GetToolTipAt(BPoint point, BToolTip** _tip);
25 private:
26 BDateFormat fDateFormat;
27 BTimeFormat fTimeFormat;
31 #endif // _TIME_ZONE_LIST_VIEW_H