eris  1.4.0
A WorldForge client library.
Types.h
1 #ifndef ERIS_TYPES_H
2 #define ERIS_TYPES_H
3 
4 // system headers
5 #include <string>
6 #include <list>
7 #include <set>
8 
9 namespace Eris
10 {
11 
12 // Forward Decls
13 class Entity;
14 class TypeInfo;
15 class TypeService;
16 class Connection;
17 class Avatar;
18 
22 typedef enum
23 {
24  NO_ERR = 0,
25  NOT_CONNECTED,
30  DUPLICATE_CHAR_ACTIVE,
31  BAD_CHARACTER_ID
32 } Result;
33 
34 
35 }
36 
37 #endif
Definition: Account.cpp:33
Result
Definition: Types.h:23
@ ALREADY_LOGGED_IN
Occurs when trying to log in to an Account which is already logged in.
Definition: Types.h:29
@ NOT_LOGGED_IN
Occurs when performing an operation that requires a valid server login.
Definition: Types.h:27