Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
#ifndef Thread_h__
#define Thread_h__
#include "Message.h"
#include "mozilla/RefPtr.h"
#include "nsIMsgThread.h"
namespace mozilla::mailnews {
class Thread : public nsIMsgThread {
public:
explicit Thread(Message* message) : mMessage(message) {}
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGTHREAD
private:
virtual ~Thread() {};
RefPtr<Message> mMessage;
};
} // namespace mozilla::mailnews
#endif // Thread_h__