dolphin/Source/Core/DolphinWX/Debugger/BreakpointView.h

20 lines
363 B
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <wx/listctrl.h>
2014-02-22 23:36:30 +01:00
#include <wx/windowid.h>
2014-02-22 23:36:30 +01:00
class wxWindow;
class CBreakPointView : public wxListCtrl
{
public:
CBreakPointView(wxWindow* parent, const wxWindowID id);
2014-03-08 01:54:44 +01:00
void Update() override;
void DeleteCurrentSelection();
};