home *** CD-ROM | disk | FTP | other *** search
-
- ///////////////////////////////////////////////////////////////////////////////
- // Copyright 1995 by Potomac Software, Inc. Use of this material is subject to
- // the terms and conditions of the software license agreement.
-
- #ifndef __DISPATBC_H__
- #define __DISPATBC_H__
-
- ///////////////////////////////////////////////////////////////////////////////
- // Abstract base class for dispatching notifications via virtual event handlers.
-
- class TWeblibDispatch
- {
- public:
- virtual LRESULT Dispatch(UINT nMsg,WPARAM wParam,LPARAM lParam) = 0;
- };
-
- #endif
-
-