home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c05 / lab07 / ex02 / splitter.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  646 b   |  34 lines

  1. // Splitter.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "diff.h"
  6. #include "Splitter.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSplitter
  15.  
  16. CSplitter::CSplitter()
  17. {
  18. }
  19.  
  20. CSplitter::~CSplitter()
  21. {
  22. }
  23.  
  24.  
  25. BEGIN_MESSAGE_MAP(CSplitter, CSplitterWnd)
  26.     //{{AFX_MSG_MAP(CSplitter)
  27.         // NOTE - the ClassWizard will add and remove mapping macros here.
  28.     //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30.  
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CSplitter message handlers
  34.