Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
Tool made with wxWiget for true platform independency.
  • Loading branch information
lagnajeet committed Aug 5, 2019
1 parent a7c20b8 commit 35d45dc
Show file tree
Hide file tree
Showing 17 changed files with 3,805 additions and 0 deletions.
Binary file added Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions MyThread.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#ifndef MYTHREAD_H
#define MYTHREAD_H

#include <wx/thread.h>
#include <wx/event.h>
#include "wx/socket.h"

BEGIN_DECLARE_EVENT_TYPES()
DECLARE_EVENT_TYPE(wxEVT_READTHREAD, -1)
END_DECLARE_EVENT_TYPES()



class MyThread : public wxThread
{
public:
MyThread(wxEvtHandler* pParent);
private:
int m_param;
void* Entry();
protected:
wxEvtHandler * m_pParent;
};
#endif
Loading

0 comments on commit 35d45dc

Please sign in to comment.