diff options
author | 2021-01-04 12:08:16 -0500 | |
---|---|---|
committer | 2021-01-04 12:15:09 -0500 | |
commit | c231ee373a461ee8555b2df25e68efea4506229d (patch) | |
tree | 30cfd37e502317b69d3695bc74aebaacc5756418 /src/frontend/mame/mame.cpp | |
parent | 687e7e162dbadc4b4d0ca58343493f15a0cdabbc (diff) |
render.h, rendlay.h: Dependency refactoring
- render.h: Split out layout class declarations into rendlay.h, with some adjustments for the resulting incomplete types (std::reference_wrapper unfortunately does not allow these by C++17 rules)
- rendlay.h: Move old header contents to layout/generic.h
Diffstat (limited to 'src/frontend/mame/mame.cpp')
-rw-r--r-- | src/frontend/mame/mame.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontend/mame/mame.cpp b/src/frontend/mame/mame.cpp index f48cbd46563..919d3583074 100644 --- a/src/frontend/mame/mame.cpp +++ b/src/frontend/mame/mame.cpp @@ -22,6 +22,7 @@ #include "luaengine.h" #include "mameopts.h" #include "pluginopts.h" +#include "rendlay.h" #include "validity.h" #include "xmlfile.h" |