aria2/test/extension_message_test_helper.h
Tatsuhiro Tsujikawa 28d5c7408f Check that C++ compiler supports override keyword
If the compiler supports override, define CXX11_OVERRIDE as override,
otherwise define it as empty. Use CXX11_OVERRIDE instead of override.
2013-07-06 15:54:03 +09:00

21 lines
479 B
C++

#ifndef D_EXTENSION_MESSAGE_TEST_HELPER_H
#define D_EXTENSION_MESSAGE_TEST_HELPER_H
#include "MockBtMessageFactory.h"
namespace aria2 {
class WrapExtBtMessageFactory:public MockBtMessageFactory {
public:
virtual std::unique_ptr<BtExtendedMessage>
createBtExtendedMessage(std::unique_ptr<ExtensionMessage> extmsg)
CXX11_OVERRIDE
{
return make_unique<BtExtendedMessage>(std::move(extmsg));
}
};
} // namespace aria2
#endif // D_EXTENSION_MESSAGE_TEST_HELPER_H