2013-02-02 21:52:49 +01:00
|
|
|
//
|
|
|
|
// Message.cpp
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
//
|
|
|
|
// Library: MongoDB
|
|
|
|
// Package: MongoDB
|
|
|
|
// Module: Message
|
|
|
|
//
|
|
|
|
// Implementation of the Message class.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2013-02-02 21:52:49 +01:00
|
|
|
//
|
|
|
|
|
2013-03-17 19:34:36 +01:00
|
|
|
|
2013-02-02 21:52:49 +01:00
|
|
|
#include "Poco/MongoDB/Message.h"
|
|
|
|
|
2013-03-17 19:34:36 +01:00
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
namespace MongoDB {
|
2013-02-02 21:52:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
Message::Message(MessageHeader::OpCode opcode) : _header(opcode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-17 19:34:36 +01:00
|
|
|
|
2013-02-02 21:52:49 +01:00
|
|
|
Message::~Message()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-17 19:34:36 +01:00
|
|
|
|
|
|
|
} } // namespace Poco::MongoDB
|