15 lines
228 B
C
15 lines
228 B
C
|
#pragma once
|
||
|
|
||
|
#include "Widget.h"
|
||
|
|
||
|
class ImageEditorView : public Widget
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
ImageEditorView();
|
||
|
|
||
|
static std::unique_ptr<ImageEditorView> Create();
|
||
|
};
|
||
|
|
||
|
using ImageEditorViewUPtr = std::unique_ptr<ImageEditorView>;
|