Coverage Report

Created: 2025-08-29 06:09

/src/aspell/common/speller.cpp
Line
Count
Source
1
/* This file is part of The New Aspell
2
 * Copyright (C) 2001 by Kevin Atkinson under the GNU LGPL
3
 * license version 2.0 or 2.1.  You should have received a copy of the
4
 * LGPL license along with this library if you did not you can find it
5
 * at http://www.gnu.org/.                                              */
6
7
#include "speller.hpp"
8
#include "convert.hpp"
9
#include "clone_ptr-t.hpp"
10
#include "config.hpp"
11
12
namespace acommon {
13
14
413
  Speller::Speller(SpellerLtHandle h) : lt_handle_(h) {}
15
16
413
  Speller::~Speller() {}
17
}
18