stuff-from-scratch/apps/notes_tk/NotesTk.h
2022-12-02 11:50:15 +00:00

12 lines
195 B
C++

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