Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
action_controller.h
1// SPDX-FileCopyrightText: © 2024 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#pragma once
5
6#include <QObject>
7#include <QtQmlIntegration/QtQmlIntegration>
8
12class ActionController : public QObject
13{
14 Q_OBJECT
15 QML_ELEMENT
16 QML_SINGLETON
17public:
18 // Q_INVOKABLE void createEmptyTrack (int type);
19
20public:
21 ActionController (QObject * parent = nullptr);
22};