stuff-from-scratch/apps/notes_tk/NotesTk.h
2023-12-21 09:18:44 +00:00

12 lines
233 B
C++

#pragma once
#include "GuiApplication.h"
class NotesTk : public GuiApplication
{
public:
NotesTk(Ptr<CommandLineArgs> args = nullptr, Ptr<MainApplication> mainApp = nullptr);
protected:
void initializeViews() override;
};