162f340b21
that implements updating specific to update_mime_info(). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1268 a95241bf-73f2-0310-859d-f6bbb57e9c96
31 lines
906 B
C++
31 lines
906 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file UpdateMimeInfoThread.h
|
|
UpdateMimeInfoThread interface declaration
|
|
*/
|
|
|
|
#ifndef _MIME_UPDATE_MIME_INFO_THREAD_H
|
|
#define _MIME_UPDATE_MIME_INFO_THREAD_H
|
|
|
|
#include <mime/MimeUpdateThread.h>
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
namespace Mime {
|
|
|
|
class UpdateMimeInfoThread : public MimeUpdateThread {
|
|
public:
|
|
UpdateMimeInfoThread(const char *name, int32 priority, BMessenger managerMessenger,
|
|
const entry_ref *root, bool recursive, bool force, BMessage *replyee);
|
|
status_t DoMimeUpdate(const entry_ref *entry, bool *entryIsDir);
|
|
};
|
|
|
|
} // namespace Mime
|
|
} // namespace Storage
|
|
} // namespace BPrivate
|
|
|
|
#endif // _MIME_UPDATE_MIME_INFO_THREAD_H
|