diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-04-02 01:45:11 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-04-02 04:11:47 -0400 |
| commit | 7f0203a5b0d61919c7e7513c2fd39c619490d392 (patch) | |
| tree | c2c8edc2bfc921747bf90bc7196f11a8199c389e /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | a65a1767779b448db15ef5ccd3b2c11f79af6480 (diff) | |
Frame: Make TAS dialogs private
Amends the TAS callbacks to internally store functions using
std::function instead of raw function pointers. This allows binding
extra contextual state via lambda functions, as well as keeping the
dialogs internal to the main frame (on top of being a more flexible
interface).
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index 4c125c26e9..df287220df 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -3,7 +3,9 @@ // Refer to the license.txt file included. #include <cstddef> +#include <fstream> #include <istream> +#include <sstream> #include <string> #include <utility> #include <vector> |
