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 __CUTTEST_ENUM_H__
21 #define __CUTTEST_ENUM_H__
22 
23 #include <glib-object.h>
24 
25 G_BEGIN_DECLS
26 
27 typedef enum
28 {
29     CUTTEST_FLAG_FIRST	= (1 << 0),
30     CUTTEST_FLAG_SECOND	= (1 << 1),
31     CUTTEST_FLAG_THIRD	= (1 << 2)
32 } CuttestFlags;
33 
34 GType cuttest_flags_get_type (void);
35 #define CUTTEST_TYPE_FLAGS (cuttest_flags_get_type())
36 
37 G_END_DECLS
38 
39 #endif
40 
41 /*
42 vi:ts=4:nowrap:ai:expandtab:sw=4
43 */
44