Flu_Return_Button.cpp 807 B

1234567891011121314151617181920212223242526
  1. // $Id: Flu_Return_Button.cpp,v 1.2 2003/08/20 16:29:47 jbryan Exp $
  2. /***************************************************************
  3. * FLU - FLTK Utility Widgets
  4. * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  5. *
  6. * This file and its content is protected by a software license.
  7. * You should have received a copy of this license with this file.
  8. * If not, please contact the Ohio Supercomputer Center immediately:
  9. * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  10. *
  11. ***************************************************************/
  12. #include "FLU/Flu_Return_Button.H"
  13. Flu_Return_Button :: Flu_Return_Button( int X,int Y,int W,int H,const char *l )
  14. : Flu_Button( X,Y,W,H,l )
  15. {
  16. retBtn = true;
  17. }
  18. Flu_Return_Button :: ~Flu_Return_Button()
  19. {
  20. }