Update Spanish translation
[gnumeric.git] / src / go-data-cache-field-impl.h
blob5ac1f57be82860bec4a6b2ccc3f21690c1633066
1 /*
2 * go-data-cache-field-impl.h :
4 * Copyright (C) 2008 Jody Goldberg (jody@gnome.org)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) version 3.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
19 * USA
21 #ifndef GO_DATA_CACHE_FIELD_IMPL_H
22 #define GO_DATA_CACHE_FIELD_IMPL_H
24 #include <go-data-cache-field.h>
25 #include <glib-object.h>
26 #include <go-val.h>
28 G_BEGIN_DECLS
29 #ifndef GOFFICE_NAMESPACE_DISABLE
31 struct _GODataCacheField {
32 GObject base;
34 GODataCache *cache;
35 GOString *name;
36 int indx, group_parent;
37 unsigned int offset;
38 GODataCacheFieldType ref_type;
40 GOValArray *indexed;
41 GOValArray *grouped;
42 GOValBucketer bucketer;
44 typedef struct {
45 GObjectClass base;
46 } GODataCacheFieldClass;
48 #endif
49 G_END_DECLS
51 #endif /* GO_DATA_CACHE_FIELD_IMPL_H */