Updated documentation

This commit is contained in:
Luca Beltrame 2013-06-09 17:12:04 +02:00
parent 5a10b663d2
commit 89632643aa

View file

@ -107,6 +107,8 @@ namespace Danbooru {
* @param boardUrl The URL to connect to.
* @param username Username to use (optional)
* @param password Password to use (optional)
* @param cache A pointer to a KImageCache instance to enable caching
* of downloaded pixmaps.
* @param parent The parent QObject
*
**/
@ -245,10 +247,21 @@ namespace Danbooru {
**/
void postDownloaded(Danbooru::DanbooruPost* post);
/**
* Emitted when a pool has been downloaded.
*
* The parameter contains a pointer to the pool that has been
* downloaded.
**/
void poolDownloaded(Danbooru::DanbooruPool* pool);
/**
* Emitted when a tag has been downloaded.
*
* The parameter contains a pointer to the tag that has been
* downloaded.
**/
void tagDownloaded(Danbooru::DanbooruTag* tag);
// TODO: Tags and similar
};
};