summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/infoxml.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/infoxml.h')
-rw-r--r--src/frontend/mame/infoxml.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/frontend/mame/infoxml.h b/src/frontend/mame/infoxml.h
new file mode 100644
index 00000000000..690610d1e70
--- /dev/null
+++ b/src/frontend/mame/infoxml.h
@@ -0,0 +1,43 @@
+// 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);
+
+private:
+ // internal state
+ emu_options m_lookup_options;
+ bool m_dtd;
+};
+
+#endif // MAME_FRONTEND_MAME_INFOXML_H