Flu_Output.cpp 765 B

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