mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-03 03:57:49 +00:00
35 lines
425 B
C++
35 lines
425 B
C++
//
|
|
// Element.cpp
|
|
//
|
|
// $Id$
|
|
//
|
|
// Library: MongoDB
|
|
// Package: MongoDB
|
|
// Module: Element
|
|
//
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/MongoDB/Element.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace MongoDB {
|
|
|
|
|
|
Element::Element(const std::string& name) : _name(name)
|
|
{
|
|
}
|
|
|
|
|
|
Element::~Element()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::MongoDB
|