1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  *  Copyright (C) 2008  Kouhei Sutou <kou@cozmixng.org>
4  *
5  *  This library is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Lesser General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This library 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
13  *  GNU Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 
20 #ifndef __CUT_ITERATED_TEST_H__
21 #define __CUT_ITERATED_TEST_H__
22 
23 #include <glib-object.h>
24 
25 #include <cutter/cut-private.h>
26 #include <cutter/cut-test.h>
27 
28 G_BEGIN_DECLS
29 
30 #define CUT_TYPE_ITERATED_TEST            (cut_iterated_test_get_type ())
31 #define CUT_ITERATED_TEST(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CUT_TYPE_ITERATED_TEST, CutIteratedTest))
32 #define CUT_ITERATED_TEST_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CUT_TYPE_ITERATED_TEST, CutIteratedTestClass))
33 #define CUT_IS_ITERATED_TEST(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CUT_TYPE_ITERATED_TEST))
34 #define CUT_IS_ITERATED_TEST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CUT_TYPE_ITERATED_TEST))
35 #define CUT_ITERATED_TEST_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), CUT_TYPE_ITERATED_TEST, CutIteratedTestClass))
36 
37 typedef void    (*CutIteratedTestFunction) (gconstpointer data);
38 
39 typedef struct _CutIteratedTestClass    CutIteratedTestClass;
40 
41 struct _CutIteratedTest
42 {
43     CutTest object;
44 };
45 
46 struct _CutIteratedTestClass
47 {
48     CutTestClass parent_class;
49 };
50 
51 GType                cut_iterated_test_get_type    (void) G_GNUC_CONST;
52 
53 CutIteratedTest     *cut_iterated_test_new         (const gchar     *name,
54                                                     CutIteratedTestFunction function,
55                                                     CutTestData     *data);
56 CutIteratedTest     *cut_iterated_test_new_empty   (void);
57 
58 CutTestData         *cut_iterated_test_get_data    (CutIteratedTest *test);
59 void                 cut_iterated_test_set_data    (CutIteratedTest *test,
60                                                     CutTestData     *data);
61 void                 cut_iterated_test_clear_data  (CutIteratedTest *test);
62 
63 G_END_DECLS
64 
65 #endif /* __CUT_ITERATED_TEST_H__ */
66 
67 /*
68 vi:ts=4:nowrap:ai:expandtab:sw=4
69 */
70