mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
34 lines
422 B
C++
34 lines
422 B
C++
//
|
|
// Message.cpp
|
|
//
|
|
// Library: MongoDB
|
|
// Package: MongoDB
|
|
// Module: Message
|
|
//
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/MongoDB/Message.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace MongoDB {
|
|
|
|
|
|
Message::Message(MessageHeader::OpCode opcode):
|
|
_header(opcode)
|
|
{
|
|
}
|
|
|
|
|
|
Message::~Message()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::MongoDB
|