Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include "fwfield.h"
  2. #include "fwdialog.h"
  3.  
  4.  
  5. FWField::FWField(int Row , int Col ,
  6.          int Width , int Height,
  7.          void* Data ,
  8.          bool Bordered ,
  9.          const char* Border){}
  10. FWField::~FWField(){}
  11. int FWField::edit() {return 0;}
  12. bool FWField::editable() const {return true;}
  13.  
  14.  
  15. void FWField::set(const void* data){}
  16. void* FWField::data(){}
  17.  
  18. void FWField::container(FWDialog* theOwner){}
  19. FWDialog* FWField::container(){}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement