looper/backends/ui/qt/main.h
Zachary Hall ae74999276
Some checks failed
Build / build-gentoo (push) Failing after 1m25s
Build / download-system-deps (push) Successful in 3m44s
Build / get-source-code (push) Successful in 6m52s
Build / build-appimage (push) Successful in 3m29s
Build / build-android (push) Failing after 2m52s
Build / build-windows (push) Failing after 6m42s
Add QT6 frontend
2024-11-20 13:39:34 -08:00

10 lines
274 B
C++

#pragma once
#include <backend.hpp>
#include <string>
#include <vector>
class QtUIBackend : public UIBackend {
public:
std::string get_id() override;
std::string get_name() override;
int run(std::vector<std::string> args, int argc, char **argv) override;
};