2024-09-29 17:58:05 -03:00
|
|
|
/*
|
|
|
|
* Copyright 2024, My Name <my@email.address>
|
|
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
|
|
*/
|
|
|
|
#ifndef APP_H
|
|
|
|
#define APP_H
|
|
|
|
|
2025-05-07 06:31:50 -03:00
|
|
|
#include "MainWindow.h"
|
2024-09-29 17:58:05 -03:00
|
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
|
|
|
|
|
|
|
|
class App : public BApplication
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
App();
|
|
|
|
virtual ~App();
|
|
|
|
|
|
|
|
virtual void AboutRequested();
|
|
|
|
|
2025-05-07 06:31:50 -03:00
|
|
|
MainWindow* mainWindow = nullptr;
|
|
|
|
|
|
|
|
|
2024-09-29 17:58:05 -03:00
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2025-05-07 06:31:50 -03:00
|
|
|
|
|
|
|
|
2024-09-29 17:58:05 -03:00
|
|
|
#endif // APP_H
|
|
|
|
|