Coverage Report

Created: 2025-08-28 06:20

/src/aspell/common/word_list.hpp
Line
Count
Source
1
/* Automatically generated file.  Do not edit directly. */
2
3
/* This file is part of The New Aspell
4
 * Copyright (C) 2001-2002 by Kevin Atkinson under the GNU LGPL
5
 * license version 2.0 or 2.1.  You should have received a copy of the
6
 * LGPL license along with this library if you did not you can find it
7
 * at http://www.gnu.org/.                                              */
8
9
#ifndef ASPELL_WORD_LIST__HPP
10
#define ASPELL_WORD_LIST__HPP
11
12
13
namespace acommon {
14
15
class StringEnumeration;
16
17
class WordList {
18
 public:
19
  class Convert * from_internal_;
20
  virtual bool empty() const = 0;
21
  virtual unsigned int size() const = 0;
22
  virtual StringEnumeration * elements() const = 0;
23
9.43k
  WordList() : from_internal_(0) {}
24
9.43k
  virtual ~WordList() {}
25
};
26
27
28
}
29
30
#endif /* ASPELL_WORD_LIST__HPP */