~ubuntu-branches/ubuntu/quantal/gnumeric/quantal

« back to all changes in this revision

Viewing changes to src/go-data-cache-field-impl.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-06-22 13:37:20 UTC
  • mfrom: (1.1.20 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090622133720-rtdazsiz2lx5q8l7
Tags: 1.9.9-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Promoted gnumeric-doc to Recommends in gnumeric package for help to be
    installed automatically
  - gnumeric-gtk is a transitional package
  - gnumeric conflicts with gnumeric-gtk << 1.8.3-3ubuntu1
  - call initltool-update in po*
  - remove psiconv support (psiconv is in universe):
    o debian/control: remove B-D on libpsiconv-dev
    o debian/rules: don't pass --with-psiconv to ./configure
    o debian/gnumeric-plugins-extra.install: don't install the psiconv
      plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 
2
/*
 
3
 * go-data-cache-field-impl.h :
 
4
 *
 
5
 * Copyright (C) 2008 Jody Goldberg (jody@gnome.org)
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of version 2 of the GNU General Public
 
9
 * License as published by the Free Software Foundation.
 
10
 *
 
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.
 
15
 *
 
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
 
20
 */
 
21
#ifndef GO_DATA_CACHE_FIELD_IMPL_H
 
22
#define GO_DATA_CACHE_FIELD_IMPL_H
 
23
 
 
24
#include <go-data-cache-field.h>
 
25
#include <glib-object.h>
 
26
#include <go-val.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
struct _GODataCacheField {
 
31
        GObject         base;
 
32
 
 
33
        GODataCache             *cache;
 
34
        GOString                *name;
 
35
        int                      indx, group_parent;
 
36
        unsigned int             offset;
 
37
        GODataCacheFieldType     ref_type;
 
38
 
 
39
        GOValArray      *indexed;
 
40
        GOValArray      *grouped;
 
41
        GOValBucketer    bucketer;
 
42
};
 
43
typedef struct {
 
44
        GObjectClass base;
 
45
} GODataCacheFieldClass;
 
46
 
 
47
G_END_DECLS
 
48
 
 
49
#endif /* GO_DATA_CACHE_FIELD_IMPL_H */