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

  1. // VoiceBaseDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "tracker.h"
  6. #include "VoiceBaseDlg.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. // CVoiceBaseDlg dialog
  16.  
  17.  
  18. CVoiceBaseDlg::CVoiceBaseDlg(UINT nIDTemplate,CWnd* pParent /*=NULL*/)
  19.     : CDialog(nIDTemplate, pParent)
  20. {
  21.  
  22. }
  23.  
  24.  
  25. void CVoiceBaseDlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27.     CDialog::DoDataExchange(pDX);
  28. }
  29. void CVoiceBaseDlg::SetVoice(isVoice *_voice,isInstrument *_instr, isSynth *_synth)
  30. {
  31.   voice = _voice;
  32.   instrument = _instr;
  33.   synth = _synth;
  34. }
  35. void CVoiceBaseDlg::UpdateVoiceData (void)
  36. {
  37.  
  38. }
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CVoiceBaseDlg message handlers
  42.