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