| 1234567891011121314151617181920212223242526 |
- // $Id: Flu_Output.cpp,v 1.3 2003/08/20 16:29:46 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_Output.H"
- Flu_Output :: Flu_Output( int X,int Y,int W,int H,const char *l )
- : Fl_Output(X,Y,W,H,l)
- {
- color( FL_GRAY );
- }
- Flu_Output :: ~Flu_Output()
- {
- }
|