1//
2// Handler.cpp
3//
4// Library: JSON
5// Package: JSON
6// Module: Handler
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/JSON/Handler.h"
16#include "Poco/JSON/Object.h"
17
18
19namespace Poco {
20namespace JSON {
21
22
23Handler::Handler()
24{
25}
26
27
28Handler::~Handler()
29{
30}
31
32
33Dynamic::Var Handler::asVar() const
34{
35 return Dynamic::Var();
36}
37
38
39Poco::DynamicStruct Handler::asStruct() const
40{
41 return Poco::DynamicStruct();
42}
43
44
45} } // namespace Poco::JSON
46