1namespace Gda {
2    public class ServerOperation : GLib.Object {
3        [CCode (cname = "gda_server_operation_get_value_at")]
4        public unowned GLib.Value? get_value_at_format (string path_format, ...);
5    }
6    public class DataModelArray : GLib.Object, Gda.DataModel {
7        [CCode (cname = "gda_data_model_array_new_with_g_types")]
8        public static Gda.DataModel new_with_g_types (int cols, ...);
9    }
10    public class Set : GLib.Object {
11        [CCode (cname = "gda_set_new_inline")]
12        public static Gda.Set new_inline (int nb, ...);
13    }
14    public class MetaStore : GLib.Object {
15        [CCode (cname = "gda_meta_store_extract")]
16        public Gda.DataModel? extract_v (Gda.MetaStore store, string select_sql, ...) throws GLib.Error;
17    }
18}
19