mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 06:16:11 +01:00
* extensive code cleanup * small additional clean ups by myself git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22716 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
434 B
C++
21 lines
434 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);
|
|
// void AboutRequested();
|
|
private:
|
|
TeapotWindow* fTeapotWindow;
|
|
};
|
|
#endif
|