mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
15 lines
234 B
C++
15 lines
234 B
C++
#include "public_editor.h"
|
|
#include "editor.h"
|
|
|
|
PublicEditor* PublicEditor::_instance = 0;
|
|
|
|
PublicEditor::PublicEditor ()
|
|
: Window (Gtk::WINDOW_TOPLEVEL),
|
|
KeyboardTarget (*this, "editor")
|
|
{
|
|
}
|
|
|
|
PublicEditor::~PublicEditor()
|
|
{
|
|
}
|
|
|