home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / internet / weblibev / dispatbc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-02  |  568 b   |  20 lines

  1.  
  2. ///////////////////////////////////////////////////////////////////////////////
  3. // Copyright 1995 by Potomac Software, Inc. Use of this material is subject to
  4. // the terms and conditions of the software license agreement.
  5.  
  6. #ifndef __DISPATBC_H__
  7. #define __DISPATBC_H__
  8.  
  9. ///////////////////////////////////////////////////////////////////////////////
  10. // Abstract base class for dispatching notifications via virtual event handlers.
  11.  
  12. class TWeblibDispatch
  13. {
  14.   public:
  15.     virtual LRESULT Dispatch(UINT nMsg,WPARAM wParam,LPARAM lParam) = 0;
  16. };
  17.  
  18. #endif
  19.  
  20.