mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
@ -18,13 +18,17 @@
|
||||
wxDECLARE_EVENT(wxEVT_CODEVIEW_CHANGE, wxCommandEvent);
|
||||
|
||||
class DebugInterface;
|
||||
class SymbolDB;
|
||||
class wxPaintDC;
|
||||
|
||||
namespace Common
|
||||
{
|
||||
class SymbolDB;
|
||||
}
|
||||
|
||||
class CCodeView : public wxControl
|
||||
{
|
||||
public:
|
||||
CCodeView(DebugInterface* debuginterface, SymbolDB* symbol_db, wxWindow* parent,
|
||||
CCodeView(DebugInterface* debuginterface, Common::SymbolDB* symbol_db, wxWindow* parent,
|
||||
wxWindowID Id = wxID_ANY);
|
||||
|
||||
void ToggleBreakpoint(u32 address);
|
||||
@ -58,7 +62,7 @@ private:
|
||||
static constexpr int LEFT_COL_WIDTH = 16;
|
||||
|
||||
DebugInterface* m_debugger;
|
||||
SymbolDB* m_symbol_db;
|
||||
Common::SymbolDB* m_symbol_db;
|
||||
|
||||
bool m_plain;
|
||||
|
||||
|
Reference in New Issue
Block a user