56a452bb2c
that implements updating specific to create_app_meta_mime(). Note that the implementation is not 100% correct yet, and the OBOS::BMimeType::create_app_meta_mime() tests still fail. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1267 a95241bf-73f2-0310-859d-f6bbb57e9c96
31 lines
915 B
C++
31 lines
915 B
C++
//----------------------------------------------------------------------
|
|
// 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:
|
|
CreateAppMetaMimeThread(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 // _CREATE_APP_META_MIME_THREAD_H
|