stuff-from-scratch/apps/notes_tk/audio_editor/AudioEditorView.h

15 lines
204 B
C
Raw Normal View History

2020-06-27 09:47:30 +00:00
#pragma once
#include "Widget.h"
class AudioEditorView : public Widget
{
public:
AudioEditorView();
2023-12-21 09:18:44 +00:00
static Ptr<AudioEditorView> Create();
2020-06-27 09:47:30 +00:00
};
2023-12-21 09:18:44 +00:00
using AudioEditorViewUPtr = Ptr<AudioEditorView>;