Obsolete libdbus2cpp
[libt2n] / src / types.hxx
1 /***************************************************************************
2  *   Copyright (C) 2006 by Gerd v. Egidy                                   *
3  *   gve@intra2net.com                                                     *
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 version   *
7  *   2.1 as published by the Free Software Foundation.                     *
8  *                                                                         *
9  *   This library is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU Lesser General Public License for more details.                   *
13  *                                                                         *
14  *   You should have received a copy of the GNU Lesser General Public      *
15  *   License along with this program; if not, write to the                 *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19 #ifndef __LIBT2N_TYPES
20 #define __LIBT2N_TYPES
21
22 namespace libt2n
23 {
24
25 /// possible levels for logging
26 enum log_level_values { none=0, error=1, debug=2, fulldebug=3 };
27
28 /// possible types of a socket (tcp and unix)
29 enum socket_type_value { tcp_s, unix_s };
30
31 /// possible events for callback, __events_end must be the last event and must not be used 
32 /// for anything else than marking the end
33 enum callback_event_type { new_connection=0, connection_closed, connection_deleted, __events_end };
34
35 }
36
37 #endif