aHardyX

Untitled

Oct 1st, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <wx/wx.h>
  2. #include "../include/java_wxpanel.h"
  3.  
  4. java_wxpanel::java_wxpanel(java_wxwindow* parent, int id, int x, int y, int width, int height, long style,std::string name)
  5. {
  6. std::cout << parent << std::endl ;
  7. Create(dynamic_cast<wxWindow*>(parent), id, wxPoint(x,y), wxSize(width, height), wxTAB_TRAVERSAL, name);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment