Coverage Report

Created: 2024-09-08 06:23

/src/aspell/lib/new_config.cpp
Line
Count
Source
1
// This file is part of The New Aspell
2
// Copyright (C) 2002 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 <string.h>
8
9
#include "config.hpp"
10
#include "errors.hpp"
11
#include "filter.hpp"
12
13
namespace acommon {
14
  
15
  extern void setup_static_filters(Config * config);
16
17
  Config * new_config() 
18
1.64k
  {
19
1.64k
    Config * config = new_basic_config();
20
1.64k
    setup_static_filters(config);
21
1.64k
    return config;
22
1.64k
  }
23
24
}