1/*
2 * Copyright 1999, Be Incorporated. All Rights Reserved.
3 * This file may be used under the terms of the Be Sample Code License.
4 *
5 */
6#ifndef _CLOCK_WINDOW_H
7#define _CLOCK_WINDOW_H
8
9
10#include <Window.h>
11
12
13class TOnscreenView;
14
15
16class TClockWindow : public BWindow {
17	public:
18						TClockWindow(BRect rect, const char* name);
19		virtual			~TClockWindow();
20
21		virtual	bool	QuitRequested();
22
23	private:
24		void			_InitWindow();
25
26	private:
27		TOnscreenView	*fOnScreenView;
28};
29
30#endif	// _CLOCK_WINDOW_H
31
32