2002-09-29 11:08:21 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
|
|
// by the OpenBeOS license.
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
/*!
|
|
|
|
\file CreateAppMetaMimeThread.h
|
|
|
|
CreateAppMetaMimeThread interface declaration
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CREATE_APP_META_MIME_THREAD_H
|
|
|
|
#define _CREATE_APP_META_MIME_THREAD_H
|
|
|
|
|
|
|
|
#include <mime/MimeUpdateThread.h>
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
namespace Storage {
|
|
|
|
namespace Mime {
|
|
|
|
|
|
|
|
class CreateAppMetaMimeThread : public MimeUpdateThread {
|
|
|
|
public:
|
2006-01-28 22:41:07 +03:00
|
|
|
CreateAppMetaMimeThread(const char *name, int32 priority,
|
|
|
|
BMessenger managerMessenger, const entry_ref *root, bool recursive,
|
|
|
|
int32 force, BMessage *replyee);
|
2002-09-29 11:08:21 +04:00
|
|
|
status_t DoMimeUpdate(const entry_ref *entry, bool *entryIsDir);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Mime
|
|
|
|
} // namespace Storage
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
|
|
#endif // _CREATE_APP_META_MIME_THREAD_H
|