11 lines
274 B
C
11 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;
|
||
|
};
|