| 1234567891011121314151617181920212223242526 |
- // $Id: Flu_Int_Input.cpp,v 1.4 2004/03/29 23:13:19 jbryan Exp $
- /***************************************************************
- * FLU - FLTK Utility Widgets
- * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
- *
- * This file and its content is protected by a software license.
- * You should have received a copy of this license with this file.
- * If not, please contact the Ohio Supercomputer Center immediately:
- * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
- *
- ***************************************************************/
- #include "FLU/Flu_Int_Input.H"
- Flu_Int_Input :: Flu_Int_Input( int X,int Y,int W,int H,const char *l )
- : Fl_Int_Input(X,Y,W,H,l)
- {
- format( "%d" );
- }
- Flu_Int_Input :: ~Flu_Int_Input()
- {
- }
|