mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
13 lines
183 B
C
13 lines
183 B
C
|
#include <wx\wx.h>
|
||
|
|
||
|
class Home : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
Home(const wxString& title);
|
||
|
|
||
|
void AddNew(wxCommandEvent& event);
|
||
|
|
||
|
wxListBox *netlogList;
|
||
|
};
|
||
|
|
||
|
const int ID_LISTBOX = 1;
|