http://www.freelists.org/post/haiku-commits/r40968-in-haikutrunksrcapps-activitymonitor-bootmanager-charactermap-codycam-deskbar,3 Leaving them for now in replicants, and in Terminal, according to (my interpretation of) the instructions here http://dev.haiku-os.org/browser/haiku/trunk/src/apps/terminal/README.GPL_to_OBOS#L70 Some sporadic cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41108 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
416 B
C++
24 lines
416 B
C++
/*
|
|
Copyright 1999, Be Incorporated. All Rights Reserved.
|
|
This file may be used under the terms of the Be Sample Code License.
|
|
*/
|
|
#ifndef _TEAPOT_APP_
|
|
#define _TEAPOT_APP_
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
#include "TeapotWindow.h"
|
|
|
|
|
|
class TeapotApp : public BApplication {
|
|
public:
|
|
TeapotApp(const char* sign);
|
|
virtual void MessageReceived(BMessage* msg);
|
|
|
|
private:
|
|
TeapotWindow* fTeapotWindow;
|
|
};
|
|
|
|
#endif
|