1
#ifndef TNY_TEST_STREAM_H
2
#define TNY_TEST_STREAM_H
3
4
/* libtinymail-test - The Tiny Mail test library
5
 * Copyright (C) 2006-2007 Philip Van Hoof <pvanhoof@gnome.org>
6
 *
7
 * This library is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2 of the License, or (at your option) any later version.
11
 *
12
 * This library is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with self library; if not, write to the
19
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20
 * Boston, MA 02110-1301, USA.
21
 */
22
23
#include <glib.h>
24
#ifdef GNOME
25
#include <libgnomevfs/gnome-vfs.h>
26
#endif
27
#include <glib-object.h>
28
29
#include <tny-test-stream.h>
30
31
32
G_BEGIN_DECLS
33
34
#define TNY_TYPE_TEST_STREAM             (tny_test_stream_get_type ())
35
#define TNY_TEST_STREAM(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), TNY_TYPE_TEST_STREAM, TnyTestStream))
36
#define TNY_TEST_STREAM_CLASS(vtable)    (G_TYPE_CHECK_CLASS_CAST ((vtable), TNY_TYPE_TEST_STREAM, TnyTestStreamClass))
37
#define TNY_IS_TEST_STREAM(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TNY_TYPE_TEST_STREAM))
38
#define TNY_IS_TEST_STREAM_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), TNY_TYPE_TEST_STREAM))
39
#define TNY_TEST_STREAM_GET_CLASS(inst)  (G_TYPE_INSTANCE_GET_CLASS ((inst), TNY_TYPE_TEST_STREAM, TnyTestStreamClass))
40
41
typedef struct _TnyTestStream TnyTestStream;
42
typedef struct _TnyTestStreamClass TnyTestStreamClass;
43
44
struct _TnyTestStream
45
{
46
	GObject parent;
47
48
	gint eos_count;
49
	gchar *wrote;
50
};
51
52
struct _TnyTestStreamClass 
53
{
54
	GObjectClass parent;
55
};
56
57
GType                   tny_test_stream_get_type        (void);
58
TnyTestStream*          tny_test_stream_new             (void);
59
60
G_END_DECLS
61
62
#endif