LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
|
Base class for observers of directory creation notifications. More...
#include <file.hxx>
Public Member Functions | |
virtual | ~DirectoryCreationObserver () |
virtual void | DirectoryCreated (const rtl::OUString &aDirectoryUrl)=0 |
This method will be called when a new directory has been created and needs to be overwritten by derived classes. More... | |
Base class for observers of directory creation notifications.
Clients which uses the method createDirectoryPath of the class Directory may want to be informed about the directories that have been created. This may be accomplished by deriving from this base class and overwriting the virtual function DirectoryCreated.
|
inlinevirtual |
|
pure virtual |
This method will be called when a new directory has been created and needs to be overwritten by derived classes.
You must not delete the directory that was just created otherwise you will run into an endless loop.
aDirectoryUrl | [in]The absolute file URL of the directory that was just created by osl::Directory::createPath. |