File: extra.i

package info (click to toggle)
xapian-bindings 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 19,172 kB
  • sloc: cpp: 323,213; cs: 9,646; java: 7,153; python: 5,494; sh: 4,624; perl: 4,455; makefile: 1,168; ruby: 1,027; php: 588; tcl: 250
file content (26 lines) | stat: -rw-r--r-- 1,149 bytes parent folder | download | duplicates (2)
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
%{
/* ruby/extra.i: custom Ruby SWIG stuff to go after xapian-headers.i
 *
 * Copyright (C) 2011 Olly Betts
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see
 * <https://www.gnu.org/licenses/>.
 */
%}

%init %{
    // Define MatchAll and MatchNothing as constants in class Xapian::Query.
    rb_define_const(SwigClassQuery.klass, "MatchAll", SWIG_NewPointerObj(SWIG_as_voidptr(new Xapian::Query("")), SWIGTYPE_p_Xapian__Query, 0));;
    rb_define_const(SwigClassQuery.klass, "MatchNothing", SWIG_NewPointerObj(SWIG_as_voidptr(new Xapian::Query()), SWIGTYPE_p_Xapian__Query, 0));;
%}