UnityMol  0.9.6-875
UnityMol viewer / In developement
CommandID.cs
Go to the documentation of this file.
1 
66 namespace Cmd
67 {
68  public class CommandID
69  {
70  public static int ERROR = 1000;
71 
72  public static int LOGIN = 1001;
73 
74  public static int EXIT = 1002;
75 
76  public static int GETPDB= 1003;
77 
78  public static int GETPDB_AGAIN = 1006;
79 
80  public static int OTHER_USERS = 1004;
81 
82  public static int ACCEPT=1005;
83 
84 
85  public CommandID()
86  {
87  }
88 
89  }
90 }
static int EXIT
Definition: CommandID.cs:74
static int GETPDB_AGAIN
Definition: CommandID.cs:78
Definition: CommandID.cs:66
static int OTHER_USERS
Definition: CommandID.cs:80
static int LOGIN
Definition: CommandID.cs:72
static int ERROR
Definition: CommandID.cs:70
static int GETPDB
Definition: CommandID.cs:76
static int ACCEPT
Definition: CommandID.cs:82