stuff-from-scratch/apps/notes_tk/image_editor/ImageEditorView.h

17 lines
237 B
C
Raw Normal View History

2020-06-27 09:47:30 +00:00
#pragma once
#include "Widget.h"
class ImageEditorView : public Widget
{
public:
ImageEditorView();
2023-01-23 10:08:29 +00:00
virtual ~ImageEditorView();
2023-12-21 09:18:44 +00:00
static Ptr<ImageEditorView> Create();
2020-06-27 09:47:30 +00:00
};
2023-12-21 09:18:44 +00:00
using ImageEditorViewUPtr = Ptr<ImageEditorView>;