Coverage Report

Created: 2026-04-29 07:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libetonyek/src/lib/KEY2Dictionary.cpp
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/*
3
 * This file is part of the libetonyek project.
4
 *
5
 * This Source Code Form is subject to the terms of the Mozilla Public
6
 * License, v. 2.0. If a copy of the MPL was not distributed with this
7
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
 */
9
10
#include "KEY2Dictionary.h"
11
12
namespace libetonyek
13
{
14
15
KEY2Dictionary::KEY2Dictionary()
16
0
  : IWORKDictionary()
17
0
  , m_placeholderStyles()
18
0
  , m_bodyPlaceholders()
19
0
  , m_objectPlaceholders()
20
0
  , m_slidenumberPlaceholders()
21
0
  , m_titlePlaceholders()
22
0
  , m_layers()
23
0
  , m_masterSlides()
24
0
  , m_slides()
25
0
  , m_transitions()
26
0
{
27
0
}
28
29
}
30
31
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */