home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1995 March / PCD_395.iso / starview / wntmsci / german / dedtdemo.cx_ / DEDTDEMO.CXX
Encoding:
C/C++ Source or Header  |  1994-01-06  |  389 b   |  17 lines

  1. #include <string.h>
  2. #include <sv.hxx>
  3.  
  4. #include "dedtdemo.hrc"
  5. #include "dedtdemo.hxx"
  6.  
  7.  
  8. ModalDialogEXAMPLE::ModalDialogEXAMPLE( Window * pParent, const ResId & rResId, BOOL bFreeRes )
  9.     : ModalDialog( pParent, rResId ),
  10.     aListBox1( this, ResId( 1 ) ),
  11.     aOKButton1( this, ResId( 1 ) ),
  12.     aCancelButton1( this, ResId( 1 ) )
  13. {
  14.     if( bFreeRes ) FreeResource();
  15. }
  16.  
  17.