Coverage Report

Created: 2025-09-05 06:24

/src/poco/JSON/src/Handler.cpp
Line
Count
Source (jump to first uncovered line)
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
17
18
namespace Poco {
19
namespace JSON {
20
21
22
149k
Handler::Handler() = default;
23
24
25
149k
Handler::~Handler() = default;
26
27
28
Dynamic::Var Handler::asVar() const
29
0
{
30
0
  return {};
31
0
}
32
33
34
Poco::DynamicStruct Handler::asStruct() const
35
0
{
36
0
  return {};
37
0
}
38
39
40
} } // namespace Poco::JSON