home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / InsertBaseDlg.cpp < prev    next >
C/C++ Source or Header  |  2003-01-06  |  908b  |  43 lines

  1. // InsertBaseDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "tracker.h"
  6. #include "InsertBaseDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CInsertBaseDlg dialog
  16.  
  17.  
  18. CInsertBaseDlg::CInsertBaseDlg(UINT nIDTemplate, CWnd* pParent)
  19. : CDialog(nIDTemplate, pParent)
  20. {
  21. }
  22.  
  23.  
  24. void CInsertBaseDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26.     CDialog::DoDataExchange(pDX);
  27. }
  28.  
  29. void CInsertBaseDlg::SetVoice( isInsert *_insert,isVoice *_voice,isInstrument *_instr, isSynth *_synth)
  30. {
  31.     insert = _insert;
  32.     voice = _voice;
  33.     instrument = _instr;
  34.     synth = _synth;
  35.  
  36. }
  37. void CInsertBaseDlg::UpdateInsertData()
  38. {
  39. }
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CInsertBaseDlg message handlers
  43.