Updated Traditional Chinese translation.
[evolution.git] / shell / evolution-test-component.h
blobc549f6405998507658cc91c0fcc1461e07ea2704
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /* evolution-test-component.h
4 * Copyright (C) 2004 Novell, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: JP Rosevear <jpr@ximian.com>
23 #ifndef _EVOLUTION_TEST_COMPONENT_H_
24 #define _EVOLUTION_TEST_COMPONENT_H_
26 #include <bonobo/bonobo-object.h>
27 #include "Evolution.h"
30 #define EVOLUTION_TEST_TYPE_COMPONENT (evolution_test_component_get_type ())
31 #define EVOLUTION_TEST_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EVOLUTION_TEST_TYPE_COMPONENT, EvolutionTestComponent))
32 #define EVOLUTION_TEST_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EVOLUTION_TEST_TYPE_COMPONENT, EvolutionTestComponentClass))
33 #define EVOLUTION_TEST_IS_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EVOLUTION_TEST_TYPE_COMPONENT))
34 #define EVOLUTION_TEST_IS_COMPONENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EVOLUTION_TEST_TYPE_COMPONENT))
37 typedef struct _EvolutionTestComponent EvolutionTestComponent;
38 typedef struct _EvolutionTestComponentPrivate EvolutionTestComponentPrivate;
39 typedef struct _EvolutionTestComponentClass EvolutionTestComponentClass;
41 struct _EvolutionTestComponent {
42 BonoboObject parent;
44 EvolutionTestComponentPrivate *priv;
47 struct _EvolutionTestComponentClass {
48 BonoboObjectClass parent_class;
50 POA_GNOME_Evolution_Component__epv epv;
54 GType evolution_test_component_get_type (void);
56 #endif /* _EVOLUTION_TEST_COMPONENT_H_ */