stuff-from-scratch/apps/notes_tk/NotesTk.h
2023-01-03 20:33:18 +00:00

12 lines
257 B
C++

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