aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/ruby/defs.h
diff options
context:
space:
mode:
authorGravatar Ali Polatel <alip@exherbo.org>2011-01-10 15:59:18 +0200
committerGravatar Ali Polatel <alip@exherbo.org>2011-01-25 12:03:32 +0200
commited38940323ba80d0136688405cbd923fa088d706 (patch)
treef6981f16a16e26b79421ee5356abfb19cabc8c45 /bindings/ruby/defs.h
parent3863e88e965f37e316de90978071c985fb4e5701 (diff)
ruby: Add wrappers for query_get_s{ort,tring}
New wrappers: notmuch_query_get_sort(): QUERY.sort notmuch_query_get_query_string(): QUERY.to_s
Diffstat (limited to 'bindings/ruby/defs.h')
-rw-r--r--bindings/ruby/defs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h
index b1be5a30..db530968 100644
--- a/bindings/ruby/defs.h
+++ b/bindings/ruby/defs.h
@@ -190,9 +190,15 @@ VALUE
notmuch_rb_query_destroy(VALUE self);
VALUE
+notmuch_rb_query_get_sort(VALUE self);
+
+VALUE
notmuch_rb_query_set_sort(VALUE self, VALUE sortv);
VALUE
+notmuch_rb_query_get_string(VALUE self);
+
+VALUE
notmuch_rb_query_search_threads(VALUE self);
VALUE