Chat-O-Matic/application/TheApp.h

33 lines
579 B
C
Raw Normal View History

/*
2011-12-03 16:38:03 -06:00
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _THE_APP_H
#define _THE_APP_H
#include <Application.h>
class MainWindow;
2021-06-23 14:15:22 -05:00
int main(int argc, char* argv[]);
class TheApp : public BApplication {
public:
TheApp();
virtual void ReadyToRun();
virtual void AboutRequested();
virtual void MessageReceived(BMessage* message);
MainWindow* GetMainWindow() const;
private:
MainWindow* fMainWin;
};
#endif // _THE_APP_H