1 | // |
---|---|
2 | // Message.cpp |
3 | // |
4 | // Library: MongoDB |
5 | // Package: MongoDB |
6 | // Module: Message |
7 | // |
8 | // Copyright (c) 2012, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/MongoDB/Message.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace MongoDB { |
20 | |
21 | |
22 | Message::Message(MessageHeader::OpCode opcode): |
23 | _header(opcode) |
24 | { |
25 | } |
26 | |
27 | |
28 | Message::~Message() |
29 | { |
30 | } |
31 | |
32 | |
33 | } } // namespace Poco::MongoDB |
34 |