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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/* Automatically generated file. Do not edit directly. */
/* 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 "config.hpp"
#include "error.hpp"
#include "posib_err.hpp"
#include "string.hpp"
namespace acommon {
class Config;
struct Error;
struct KeyInfo;
class KeyInfoEnumeration;
class MutableContainer;
class StringPairEnumeration;
extern "C" int aspell_key_info_enumeration_at_end(const KeyInfoEnumeration * ths)
{
return ths->at_end();
}
extern "C" const KeyInfo * aspell_key_info_enumeration_next(KeyInfoEnumeration * ths)
{
return ths->next();
}
extern "C" void delete_aspell_key_info_enumeration(KeyInfoEnumeration * ths)
{
delete ths;
}
extern "C" KeyInfoEnumeration * aspell_key_info_enumeration_clone(const KeyInfoEnumeration * ths)
{
return ths->clone();
}
extern "C" void aspell_key_info_enumeration_assign(KeyInfoEnumeration * ths, const KeyInfoEnumeration * other)
{
ths->assign(other);
}
extern "C" Config * new_aspell_config()
{
return new_config();
}
extern "C" void delete_aspell_config(Config * ths)
{
delete ths;
}
extern "C" Config * aspell_config_clone(const Config * ths)
{
return ths->clone();
}
extern "C" void aspell_config_assign(Config * ths, const Config * other)
{
ths->assign(other);
}
extern "C" unsigned int aspell_config_error_number(const Config * ths)
{
return ths->err_ == 0 ? 0 : 1;
}
extern "C" const char * aspell_config_error_message(const Config * ths)
{
return ths->err_ ? ths->err_->mesg : "";
}
extern "C" const Error * aspell_config_error(const Config * ths)
{
return ths->err_;
}
extern "C" void aspell_config_set_extra(Config * ths, const KeyInfo * begin, const KeyInfo * end)
{
ths->set_extra(begin, end);
}
extern "C" const KeyInfo * aspell_config_keyinfo(Config * ths, const char * key)
{
PosibErr<const KeyInfo *> ret = ths->keyinfo(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
return ret.data;
}
extern "C" KeyInfoEnumeration * aspell_config_possible_elements(Config * ths, int include_extra)
{
return ths->possible_elements(include_extra);
}
extern "C" const char * aspell_config_get_default(Config * ths, const char * key)
{
PosibErr<String> ret = ths->get_default(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
ths->temp_str = ret.data;
return ths->temp_str.c_str();
}
extern "C" StringPairEnumeration * aspell_config_elements(Config * ths)
{
return ths->elements();
}
extern "C" int aspell_config_replace(Config * ths, const char * key, const char * value)
{
PosibErr<void> ret = ths->replace(key, value);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
return 1;
}
extern "C" int aspell_config_remove(Config * ths, const char * key)
{
PosibErr<void> ret = ths->remove(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
return 1;
}
extern "C" int aspell_config_have(const Config * ths, const char * key)
{
return ths->have(key);
}
extern "C" const char * aspell_config_retrieve(Config * ths, const char * key)
{
PosibErr<String> ret = ths->retrieve(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
ths->temp_str = ret.data;
return ths->temp_str.c_str();
}
extern "C" int aspell_config_retrieve_list(Config * ths, const char * key, MutableContainer * lst)
{
PosibErr<void> ret = ths->retrieve_list(key, lst);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return 0;
return 1;
}
extern "C" int aspell_config_retrieve_bool(Config * ths, const char * key)
{
PosibErr<bool> ret = ths->retrieve_bool(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return -1;
return ret.data;
}
extern "C" int aspell_config_retrieve_int(Config * ths, const char * key)
{
PosibErr<unsigned int> ret = ths->retrieve_int(key);
ths->err_.reset(ret.release_err());
if (ths->err_ != 0) return -1;
return ret.data;
}
}
|