stuff-from-scratch/apps/notes_tk/audio_editor/AudioEditorView.cpp
2023-12-21 09:18:44 +00:00

18 lines
359 B
C++

#include "AudioEditorView.h"
#include "Label.h"
#include "TextNode.h"
#include "Theme.h"
AudioEditorView::AudioEditorView()
{
auto label = Label::Create();
label->setLabel("audio Editor");
label->setMargin(1);
addWidget(std::move(label));
}
Ptr<AudioEditorView> AudioEditorView::Create()
{
return std::make_unique<AudioEditorView>();
}