Files
haiku-beta6/src/apps/clock/clock.h
T
ejakowatz 52a3801208 It is accomplished ...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-07-09 12:24:59 +00:00

33 lines
512 B
C++

/*
clock.h
*/
/*
Copyright 1999, Be Incorporated. All Rights Reserved.
This file may be used under the terms of the Be Sample Code License.
*/
#ifndef _APPLICATION_H
#include <Application.h>
#endif
#include "cl_view.h"
#include "cl_wind.h"
#define SHOW_SECONDS 'ssec'
extern const char *app_signature;
class THelloApplication : public BApplication {
public:
THelloApplication();
virtual void MessageReceived(BMessage *msg);
private:
TClockWindow* myWindow;
TOnscreenView *myView;
};