/* * Copyright 2024, My Name * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef APP_H #define APP_H #include "MainWindow.h" #include class App : public BApplication { public: App(); virtual ~App(); virtual void AboutRequested(); MainWindow* mainWindow = nullptr; void ReadyToRun() { printf("ready to Run"); // mainWindow->checkValidKey(); } private: }; #endif // APP_H