mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
DolphinTool: CLI utility interface and disc image tools
This commit is contained in:
19
Source/Core/DolphinTool/Command.h
Normal file
19
Source/Core/DolphinTool/Command.h
Normal 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
|
Reference in New Issue
Block a user