Describes package component listener which can be used to get notifications on certain package component actions.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPackageComponentListener
{
public:
virtual void OnCreateListItem( // Event called when package component successfully created new list item
IPackageComponent *sender, // Package component which called this method
IListItem *parent, // Parent item of the created one. Equals to the one passed to CreateListItem() method
IListItem *item) = 0; // Created list item
};
Namespace: | nitisa |
Include: | Nitisa/Package/Interfaces/IPackageComponentListener.h |