~ubuntu-branches/ubuntu/precise/tracker/precise

« back to all changes in this revision

Viewing changes to src/miners/fs/tracker-miner-userguides.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2011-12-04 06:40:28 UTC
  • mfrom: (4.3.21 sid)
  • Revision ID: package-import@ubuntu.com-20111204064028-cqe0x4f4is6nojla
Tags: 0.12.8-1
* New upstream release.
* Update symbols file for libtracker-extract-0.12-0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008, Nokia <ivan.frade@nokia.com>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA  02110-1301, USA.
 
18
 *
 
19
 * Author: Martyn Russell <martyn@lanedo.com>
 
20
 */
 
21
 
 
22
#ifndef __TRACKER_MINER_FS_USERGUIDES_H__
 
23
#define __TRACKER_MINER_FS_USERGUIDES_H__
 
24
 
 
25
#include <libtracker-miner/tracker-miner.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define TRACKER_TYPE_MINER_USERGUIDES         (tracker_miner_userguides_get_type())
 
30
#define TRACKER_MINER_USERGUIDES(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TRACKER_TYPE_MINER_USERGUIDES, TrackerMinerUserguides))
 
31
#define TRACKER_MINER_USERGUIDES_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST ((c), TRACKER_TYPE_MINER_USERGUIDES, TrackerMinerUserguidesClass))
 
32
#define TRACKER_IS_MINER_USERGUIDES(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TRACKER_TYPE_MINER_USERGUIDES))
 
33
#define TRACKER_IS_MINER_USERGUIDES_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE ((c),  TRACKER_TYPE_MINER_USERGUIDES))
 
34
#define TRACKER_MINER_USERGUIDES_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TRACKER_TYPE_MINER_USERGUIDES, TrackerMinerUserguidesClass))
 
35
 
 
36
typedef struct _TrackerMinerUserguides TrackerMinerUserguides;
 
37
typedef struct _TrackerMinerUserguidesClass TrackerMinerUserguidesClass;
 
38
 
 
39
struct _TrackerMinerUserguides {
 
40
        TrackerMinerFS parent_instance;
 
41
        gpointer locale_notification_id;
 
42
};
 
43
 
 
44
struct _TrackerMinerUserguidesClass {
 
45
        TrackerMinerFSClass parent_class;
 
46
};
 
47
 
 
48
GType         tracker_miner_userguides_get_type              (void) G_GNUC_CONST;
 
49
TrackerMiner *tracker_miner_userguides_new                   (GError       **error);
 
50
gboolean      tracker_miner_userguides_detect_locale_changed (TrackerMiner  *miner);
 
51
 
 
52
G_END_DECLS
 
53
 
 
54
#endif /* __TRACKER_MINER_FS_USERGUIDES_H__ */