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

13 lines
195 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:
2022-12-02 11:50:15 +00:00
NotesTk(std::unique_ptr<CommandLineArgs> args);
2022-11-11 11:48:42 +00:00
protected:
void initializeViews() override;
};