Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
Importer.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 6/2/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_IMPORTER_HPP
7#define ATLASGAMEMANAGER_IMPORTER_HPP
8
9#include <QFuture>
10#include <QObject>
11#include <QPromise>
12
13#include <filesystem>
14
15#include "core/Types.hpp"
17
18struct GameImportData;
19
27[[nodiscard]] QFuture< RecordID >
28 importGame( GameImportData data, const std::filesystem::path root, const bool owning );
29
30#endif //ATLASGAMEMANAGER_IMPORTER_HPP
QFuture< RecordID > importGame(GameImportData data, const std::filesystem::path root, const bool owning)
Definition Importer.cpp:280
Definition Game.hpp:17
Definition GameImportData.hpp:19