WindowsXP-SP1/admin/activec/inc/treesink.h
2020-09-30 16:53:49 +02:00

15 lines
534 B
C++

/*+-------------------------------------------------------------------------*
* class CTreeCtrlEventSink
*
*
* PURPOSE: The notification handler class for tree notifications.
*
*+-------------------------------------------------------------------------*/
class CTreeCtrlEventSink : public CEventSinkBase
{
virtual SC ScOnSelectNode() {return S_OK;}
virtual SC ScOnDeleteNode() {return S_OK;}
virtual SC ScOnInsertNode() {return S_OK;}
virtual SC ScOnModifyNode() {return S_OK;}
};