Public Member Functions | |
| Cond () | |
| ~Cond () | |
| void | set_phrase (const char *phrase) |
| void | add_attr (const char *expr) |
| void | set_order (const char *expr) |
| void | set_max (int _max) |
| void | set_options (int options) |
Public Attributes | |
| ESTCOND * | cond |
Definition at line 12 of file HyperEstraierWrapper.cpp.
|
|
constructor Definition at line 15 of file HyperEstraierWrapper.cpp. References cond. 00015 {
00019 cond = est_cond_new();
00020 }
|
|
|
destructor Definition at line 21 of file HyperEstraierWrapper.cpp. References cond. 00021 {
00025 est_cond_delete(cond);
00026 }
|
|
|
set the attribute expression Definition at line 33 of file HyperEstraierWrapper.cpp. References cond. 00033 {
00037 est_cond_add_attr(cond, expr);
00038 }
|
|
|
set the maximum number of retrieval of a condition object Definition at line 45 of file HyperEstraierWrapper.cpp. References cond. 00045 {
00049 est_cond_set_max(cond, _max);
00050 }
|
|
|
set options of retrieval of a condition object Definition at line 51 of file HyperEstraierWrapper.cpp. References cond. 00051 {
00055 est_cond_set_options(cond, options);
00056 }
|
|
|
set the order of a condition object Definition at line 39 of file HyperEstraierWrapper.cpp. References cond. 00039 {
00043 est_cond_set_order(cond, expr);
00044 }
|
|
|
set the search phrase Definition at line 27 of file HyperEstraierWrapper.cpp. References cond. 00027 {
00031 est_cond_set_phrase(cond, phrase);
00032 }
|
|
|
Definition at line 14 of file HyperEstraierWrapper.cpp. Referenced by add_attr(), Cond(), Database::search(), set_max(), set_options(), set_order(), set_phrase(), and ~Cond(). |
1.4.2