blob: 00a614bcd3a3572147104661eb211a3e35254193 (
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
34
35
36
37
38
39
40
41
42
43
44
45
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
info.h
Dumps the MAME internal data as an XML file.
***************************************************************************/
#ifndef MAME_FRONTEND_MAME_INFOXML_H
#define MAME_FRONTEND_MAME_INFOXML_H
#pragma once
#include "emuopts.h"
#include <functional>
#include <vector>
//**************************************************************************
// FUNCTION PROTOTYPES
//**************************************************************************
// helper class to putput
class info_xml_creator
{
public:
// construction/destruction
info_xml_creator(emu_options const &options, bool dtd = true);
// output
void output(std::ostream &out, const std::vector<std::string> &patterns);
void output(std::ostream &out, const std::function<bool(const char *shortname, bool &done)> &filter = { }, bool include_devices = true);
static char const *feature_name(device_t::feature_type feature);
private:
// internal state
emu_options m_lookup_options;
bool m_dtd;
};
#endif // MAME_FRONTEND_MAME_INFOXML_H
|