1//
2// Element.cpp
3//
4// Library: MongoDB
5// Package: MongoDB
6// Module: Element
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/Element.h"
16
17
18namespace Poco {
19namespace MongoDB {
20
21
22Element::Element(const std::string& name) : _name(name)
23{
24}
25
26
27Element::~Element()
28{
29}
30
31
32} } // namespace Poco::MongoDB
33