blob: 27e57104293ad73aeab550c02925edbd8e576f8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
/***************************************************************************
pluginopts.cpp
Plugin options manager.
***************************************************************************/
#ifndef MAME_FRONTEND_PLUGINOPTS_H
#define MAME_FRONTEND_PLUGINOPTS_H
#pragma once
#include "options.h"
#include <list>
#include <string>
class plugin_options : public core_options
{
public:
plugin_options();
void parse_json(std::string path);
private:
static const options_entry s_option_entries[];
std::list<std::string> m_descriptions;
};
#endif // MAME_FRONTEND_PLUGINOPTS_H
|