stuff-from-scratch/apps/notes_tk/NotesTk.h

13 lines
233 B
C
Raw Normal View History

2022-11-11 11:48:42 +00:00
#pragma once
#include "GuiApplication.h"
2022-12-02 11:50:15 +00:00
class NotesTk : public GuiApplication
2022-11-11 11:48:42 +00:00
{
public:
2023-12-21 09:18:44 +00:00
NotesTk(Ptr<CommandLineArgs> args = nullptr, Ptr<MainApplication> mainApp = nullptr);
2022-11-11 11:48:42 +00:00
protected:
void initializeViews() override;
};