poco/JSON/src/Handler.cpp
Roger Meier 628a06f718 LICENSE: add info about SPDX-License-Identifier usage and use it
Signed-off-by: Roger Meier <roger@bufferoverflow.ch>
2014-05-04 21:02:42 +02:00

48 lines
551 B
C++
Executable File

//
// Handler.cpp
//
// $Id$
//
// Library: JSON
// Package: JSON
// Module: Handler
//
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/JSON/Handler.h"
#include "Poco/JSON/Object.h"
namespace Poco {
namespace JSON {
Handler::Handler()
{
}
Handler::~Handler()
{
}
Dynamic::Var Handler::asVar() const
{
return Dynamic::Var();
}
Poco::DynamicStruct Handler::asStruct() const
{
return Poco::DynamicStruct();
}
} } // namespace Poco::JSON