blob: caaf2af7123303909cbf67669b19a8a70317800d (
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
|
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
/***************************************************************************
pluginopts.cpp
Plugin options manager.
***************************************************************************/
#pragma once
#ifndef __PLUGIN_OPTS_H__
#define __PLUGIN_OPTS_H__
#include "options.h"
class plugin_options : public core_options
{
public:
// construction/destruction
plugin_options();
void parse_json(std::string path);
private:
static const options_entry s_option_entries[];
};
#endif /* __PLUGIN_OPTS_H__ */
|