home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / demos / gredit / DrawModeItem.C < prev    next >
Text File  |  1992-02-27  |  544b  |  19 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : DrawModeItem.C   Version 1.1
  4. //   LastSCCS    : 2/18/92  15:12:02
  5. //   LastEdit    : "Tue Feb 18 14:56:12 1992"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. META_IMPL_1(DrawModeItem,GnBitmapBitsPresentable,);
  11.  
  12. DrawModeItem::
  13. DrawModeItem(char *p_bitmap_bits, unsigned int p_width, unsigned int p_height,
  14.          DrawMode p_draw_mode)
  15. : GnBitmapBitsPresentable(p_bitmap_bits, p_width, p_height)
  16. {
  17.     draw_mode = p_draw_mode;
  18. }
  19.