poco/MongoDB/src/Message.cpp

37 lines
476 B
C++
Raw Normal View History

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.
//
// 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