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