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

20 lines
354 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);
void Update();
void DeleteCurrentSelection();
};