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

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