DolphinTool: CLI utility interface and disc image tools

This commit is contained in:
ssdsnake
2021-12-03 15:40:19 -06:00
parent 1e212d6212
commit 1aa8a4d46f
19 changed files with 968 additions and 26 deletions

View File

@ -0,0 +1,19 @@
// Copyright 2021 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
#include <vector>
namespace DolphinTool
{
class Command
{
public:
Command() {}
virtual ~Command() {}
virtual int Main(const std::vector<std::string>& args) = 0;
};
} // namespace DolphinTool