1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  *  Copyright (C) 2007  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_PRIVATE_H__
21 #define __CUT_PRIVATE_H__
22 
23 #include <glib.h>
24 
25 G_BEGIN_DECLS
26 
27 typedef struct _CutRunContext      CutRunContext;
28 typedef struct _CutTestRunner      CutTestRunner;
29 typedef struct _CutListener        CutListener;
30 typedef struct _CutTestSuite       CutTestSuite;
31 typedef struct _CutTestCase        CutTestCase;
32 typedef struct _CutTestIterator    CutTestIterator;
33 typedef struct _CutTest            CutTest;
34 typedef struct _CutIteratedTest    CutIteratedTest;
35 typedef struct _CutTestResult      CutTestResult;
36 
37 G_END_DECLS
38 
39 #endif /* __CUT_PRIVATE_H__ */
40 
41 /*
42 vi:nowrap:ai:expandtab:sw=4
43 */
44