Update Spanish translation
[gnumeric.git] / src / go-data-slicer-impl.h
blob3d38788e7ad6a500d126c18b29549c12741e80a2
1 /*
2 * go-data-slicer-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_SLICER_IMPL_H
22 #define GO_DATA_SLICER_IMPL_H
24 #include <goffice/goffice.h>
25 #include <go-data-slicer.h>
26 #include <glib-object.h>
28 G_BEGIN_DECLS
29 #ifndef GOFFICE_NAMESPACE_DISABLE
31 struct _GODataSlicer {
32 GObject base;
34 GODataCache *cache;
35 GOString *name;
36 GPtrArray *all_fields; /* holds the ref */
37 GArray *fields[GDS_FIELD_TYPE_MAX]; /* ordered */
39 typedef struct {
40 GObjectClass base;
41 } GODataSlicerClass;
43 #endif
44 G_END_DECLS
46 #endif /* GO_DATA_SLICER_IMPL_H */