You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
534 B
14 lines
534 B
/*+-------------------------------------------------------------------------*
|
|
* 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;}
|
|
};
|