diff options
author | 2016-12-11 18:15:41 +1100 | |
---|---|---|
committer | 2016-12-11 18:15:41 +1100 | |
commit | c8f19544676e2954bf2bb4ca03aa90d1d1148fc8 (patch) | |
tree | dd802a7f701c5ef7d3a5270a19f5a295a8ed8e7f /src/emu/bookkeeping.h | |
parent | f38bc880f0fe3eb73740f8b5c00c359402afb3c4 (diff) |
XML refactoring:
* move stuff to namespace util::xml
* scope down some enums
* split config load/save delegate types
* make config load take const so it can't mangle data
Diffstat (limited to 'src/emu/bookkeeping.h')
-rw-r--r-- | src/emu/bookkeeping.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bookkeeping.h b/src/emu/bookkeeping.h index 131ae6e8be4..e66fdf042a4 100644 --- a/src/emu/bookkeeping.h +++ b/src/emu/bookkeeping.h @@ -59,8 +59,8 @@ public: // getters running_machine &machine() const { return m_machine; } private: - void config_load(config_type cfg_type, xml_data_node *parentnode); - void config_save(config_type cfg_type, xml_data_node *parentnode); + void config_load(config_type cfg_type, util::xml::data_node const *parentnode); + void config_save(config_type cfg_type, util::xml::data_node *parentnode); // internal state running_machine & m_machine; // reference to our machine |