1 // GLib.TypeFundamentals.cs : Standard Types enumeration
2 //
3 // Author: Mike Kestner <mkestner@speakeasy.net>
4 //
5 // Copyright (c) 2001 Mike Kestner
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of version 2 of the Lesser GNU General
9 // Public License as published by the Free Software Foundation.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this program; if not, write to the
18 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 // Boston, MA 02111-1307, USA.
20 
21 
22 namespace GLib {
23 
24 	public enum TypeFundamentals {
25 		TypeInvalid	= 0 << 2,
26 		TypeNone	= 1 << 2,
27 		TypeInterface	= 2 << 2,
28 		TypeChar	= 3 << 2,
29 		TypeUChar	= 4 << 2,
30 		TypeBoolean	= 5 << 2,
31 		TypeInt		= 6 << 2,
32 		TypeUInt	= 7 << 2,
33 		TypeLong	= 8 << 2,
34 		TypeULong	= 9 << 2,
35 		TypeInt64	= 10 << 2,
36 		TypeUInt64	= 11 << 2,
37 		TypeEnum	= 12 << 2,
38 		TypeFlags	= 13 << 2,
39 		TypeFloat	= 14 << 2,
40 		TypeDouble	= 15 << 2,
41 		TypeString	= 16 << 2,
42 		TypePointer	= 17 << 2,
43 		TypeBoxed	= 18 << 2,
44 		TypeParam	= 19 << 2,
45 		TypeObject	= 20 << 2,
46 	}
47 }
48