Flu_Float_Input.cpp 798 B

1234567891011121314151617181920212223242526
  1. // $Id: Flu_Float_Input.cpp,v 1.4 2004/03/29 23:13:19 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_Float_Input.H"
  13. Flu_Float_Input :: Flu_Float_Input( int X,int Y,int W,int H,const char *l )
  14. : Fl_Float_Input(X,Y,W,H,l)
  15. {
  16. format( "%g" );
  17. }
  18. Flu_Float_Input :: ~Flu_Float_Input()
  19. {
  20. }