~debian-bazaar/+junk/anjuta-bzr-debian

« back to all changes in this revision

Viewing changes to src/bzr-whoami-cmd-get-email.h

  • Committer: Jelmer Vernooij
  • Date: 2008-08-24 19:22:57 UTC
  • mfrom: (60.1.32 trunk)
  • Revision ID: jelmer@samba.org-20080824192257-duclhydfwqau1743
Merge new upstream snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
 
2
/*
 
3
 * Anjuta
 
4
 * Copyright (C) William Fagan 2008 
 
5
 *
 
6
 * Portions based on the Subversion plugin
 
7
 * Copyright (C) James Liggett 2007
 
8
 * Copyright (C) Johannes Schmid 2005
 
9
 *
 
10
 * Anjuta is free software.
 
11
 * 
 
12
 * You may redistribute it and/or modify it under the terms of the
 
13
 * GNU General Public License, as published by the Free Software
 
14
 * Foundation; either version 2 of the License, or (at your option)
 
15
 * any later version.
 
16
 * 
 
17
 * Anjuta is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
20
 * See the GNU General Public License for more details.
 
21
 * 
 
22
 * You should have received a copy of the GNU General Public License
 
23
 * along with Anjuta.  If not, write to:
 
24
 *      The Free Software Foundation, Inc.,
 
25
 *      51 Franklin Street, Fifth Floor
 
26
 *      Boston, MA  02110-1301, USA.
 
27
 */
 
28
 
 
29
 
 
30
#ifndef _BZR_GET_EMAIL_CMD_H_
 
31
#define _BZR_GET_EMAIL_CMD_H_
 
32
 
 
33
#include "bazaar-command.h"
 
34
 
 
35
G_BEGIN_DECLS
 
36
 
 
37
#define BZR_TYPE_GET_EMAIL_CMD             (bzr_get_email_cmd_get_type ())
 
38
#define BZR_GET_EMAIL_CMD(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), BZR_TYPE_GET_EMAIL_CMD, BzrGetEmailCmd))
 
39
#define BZR_GET_EMAIL_CMD_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), BZR_TYPE_GET_EMAIL_CMD, BzrGetEmailCmdClass))
 
40
#define BZR_IS_GET_EMAIL_CMD(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BZR_TYPE_GET_EMAIL_CMD))
 
41
#define BZR_IS_GET_EMAIL_CMD_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), BZR_TYPE_GET_EMAIL_CMD))
 
42
#define BZR_GET_EMAIL_CMD_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), BZR_TYPE_GET_EMAIL_CMD, BzrGetEmailCmdClass))
 
43
 
 
44
typedef struct _BzrGetEmailCmdClass BzrGetEmailCmdClass;
 
45
typedef struct _BzrGetEmailCmd BzrGetEmailCmd;
 
46
typedef struct _BzrGetEmailCmdPriv BzrGetEmailCmdPriv;
 
47
 
 
48
struct _BzrGetEmailCmdClass
 
49
{
 
50
        BazaarCommandClass parent_class;
 
51
};
 
52
 
 
53
struct _BzrGetEmailCmd
 
54
{
 
55
        BazaarCommand parent_instance;
 
56
        
 
57
        BzrGetEmailCmdPriv *priv;
 
58
};
 
59
 
 
60
GType bzr_get_email_cmd_get_type (void) G_GNUC_CONST;
 
61
BzrGetEmailCmd* bzr_get_email_cmd_new (const gchar *working_dir);
 
62
void bzr_get_email_cmd_destroy (BzrGetEmailCmd *self);
 
63
 
 
64
G_END_DECLS
 
65
 
 
66
#endif /* _BZR_GET_EMAIL_CMD_H_ */
 
67