ps4delta/code/delta/core/dcore.h
2020-01-18 23:09:24 +01:00

30 lines
No EOL
512 B
C++

#pragma once
// Copyright (C) Force67 2019
#include <kern/proc.h>
#include <memory>
#include <string>
#include <QApplication>
#include <QFontDatabase>
#include <QIcon>
#include "ui/mainwindow.h"
class deltaCore : public QApplication {
Q_OBJECT
public:
using argvList = std::vector<std::string>;
deltaCore(int &, char **);
bool init();
void boot(std::string &fromdir);
argvList argv;
private:
bool headless{false};
std::unique_ptr<mainWindow> window;
std::unique_ptr<krnl::proc> proc;
};