1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/* This file is part of The New Aspell
* Copyright (C) 2001-2002 by Kevin Atkinson under the GNU LGPL
* license version 2.0 or 2.1. You should have received a copy of the
* LGPL license along with this library if you did not you can find it
* at http://www.gnu.org/. */
#include "info.hpp"
namespace acommon {
class Config;
struct DictInfo;
class DictInfoEnumeration;
class DictInfoList;
struct ModuleInfo;
class ModuleInfoEnumeration;
class ModuleInfoList;
extern "C" ModuleInfoList * get_aspell_module_info_list(Config * config)
{
return const_cast<ModuleInfoList *>(get_module_info_list(config));
}
extern "C" int aspell_module_info_list_empty(const ModuleInfoList * ths)
{
return ths->empty();
}
extern "C" unsigned int aspell_module_info_list_size(const ModuleInfoList * ths)
{
return ths->size();
}
extern "C" ModuleInfoEnumeration * aspell_module_info_list_elements(const ModuleInfoList * ths)
{
return ths->elements();
}
extern "C" DictInfoList * get_aspell_dict_info_list(Config * config)
{
return const_cast<DictInfoList *>(get_dict_info_list(config));
}
extern "C" int aspell_dict_info_list_empty(const DictInfoList * ths)
{
return ths->empty();
}
extern "C" unsigned int aspell_dict_info_list_size(const DictInfoList * ths)
{
return ths->size();
}
extern "C" DictInfoEnumeration * aspell_dict_info_list_elements(const DictInfoList * ths)
{
return ths->elements();
}
extern "C" int aspell_module_info_enumeration_at_end(const ModuleInfoEnumeration * ths)
{
return ths->at_end();
}
extern "C" const ModuleInfo * aspell_module_info_enumeration_next(ModuleInfoEnumeration * ths)
{
return ths->next();
}
extern "C" void delete_aspell_module_info_enumeration(ModuleInfoEnumeration * ths)
{
delete ths;
}
extern "C" ModuleInfoEnumeration * aspell_module_info_enumeration_clone(const ModuleInfoEnumeration * ths)
{
return ths->clone();
}
extern "C" void aspell_module_info_enumeration_assign(ModuleInfoEnumeration * ths, const ModuleInfoEnumeration * other)
{
ths->assign(other);
}
extern "C" int aspell_dict_info_enumeration_at_end(const DictInfoEnumeration * ths)
{
return ths->at_end();
}
extern "C" const DictInfo * aspell_dict_info_enumeration_next(DictInfoEnumeration * ths)
{
return ths->next();
}
extern "C" void delete_aspell_dict_info_enumeration(DictInfoEnumeration * ths)
{
delete ths;
}
extern "C" DictInfoEnumeration * aspell_dict_info_enumeration_clone(const DictInfoEnumeration * ths)
{
return ths->clone();
}
extern "C" void aspell_dict_info_enumeration_assign(DictInfoEnumeration * ths, const DictInfoEnumeration * other)
{
ths->assign(other);
}
}
|