52a3801208
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
407 B
C++
27 lines
407 B
C++
/*
|
|
|
|
cl_wind.h
|
|
|
|
*/
|
|
|
|
/*
|
|
Copyright 1999, Be Incorporated. All Rights Reserved.
|
|
This file may be used under the terms of the Be Sample Code License.
|
|
*/
|
|
|
|
#ifndef _WINDOW_H
|
|
#include <Window.h>
|
|
#endif
|
|
#ifndef _CL_VIEW_H_
|
|
#include "cl_view.h"
|
|
#endif
|
|
|
|
class TClockWindow : public BWindow {
|
|
|
|
public:
|
|
TClockWindow(BRect, const char*);
|
|
virtual bool QuitRequested( void );
|
|
|
|
TOnscreenView *theOnscreenView;
|
|
};
|