summaryrefslogtreecommitdiff
path: root/src/server-interface-check.h
blob: 5859e5207e43b6b9fce9473cbf710542b0ab4947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* server-interface-check.h
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU Lesser General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * Author: Ettore Perazzoli <ettore@ximian.com>
 */

#ifndef _SERVER_INTERFACE_CHECK_H_
#define _SERVER_INTERFACE_CHECK_H_

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <bonobo/bonobo-object.h>
#include "Evolution-DataServer.h"

G_BEGIN_DECLS

/* Standard GObject macros */
#define SERVER_TYPE_INTERFACE_CHECK \
	(server_interface_check_get_type ())
#define SERVER_INTERFACE_CHECK(obj) \
	(G_TYPE_CHECK_INSTANCE_CAST \
	((obj), SERVER_TYPE_INTERFACE_CHECK, ServerInterfaceCheck))
#define SERVER_INTERFACE_CHECK_CLASS(cls) \
	(G_TYPE_CHECK_CLASS_CAST \
	((cls), SERVER_TYPE_INTERFACE_CHECK, ServerInterfaceCheckClass))
#define SERVER_IS_INTERFACE_CHECK(obj) \
	(G_TYPE_CHECK_INSTANCE_TYPE \
	((obj), SERVER_TYPE_INTERFACE_CHECK))
#define SERVER_IS_INTERFACE_CHECK_CLASS(cls) \
	(G_TYPE_CHECK_CLASS_TYPE \
	((cls), SERVER_TYPE_INTERFACE_CHECK))


typedef struct _ServerInterfaceCheck        ServerInterfaceCheck;
typedef struct _ServerInterfaceCheckPrivate ServerInterfaceCheckPrivate;
typedef struct _ServerInterfaceCheckClass   ServerInterfaceCheckClass;

struct _ServerInterfaceCheck {
	BonoboObject parent;
};

struct _ServerInterfaceCheckClass {
	BonoboObjectClass parent_class;

	POA_GNOME_Evolution_DataServer_InterfaceCheck__epv epv;
};


GType server_interface_check_get_type  (void);
ServerInterfaceCheck *server_interface_check_new (void);

G_END_DECLS

#endif /* _SERVER_INTERFACE_CHECK_H_ */