24 lines
325 B
C++
24 lines
325 B
C++
/*
|
|
* Copyright 2024, My Name <my@email.address>
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
*/
|
|
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
|
|
class App : public BApplication
|
|
{
|
|
public:
|
|
App();
|
|
virtual ~App();
|
|
|
|
virtual void AboutRequested();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // APP_H
|
|
|