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

13 lines
257 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-01-03 20:33:18 +00:00
NotesTk(std::unique_ptr<CommandLineArgs> args = nullptr, std::unique_ptr<MainApplication> mainApp = nullptr);
2022-11-11 11:48:42 +00:00
protected:
void initializeViews() override;
};