00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef INCLUDE_RSRC_ORDONANCEUR_SERVER
00013 #define INCLUDE_RSRC_ORDONANCEUR_SERVER
00014
00015 #include "../Tools/Tools.h"
00016 #include "../Error/Error.h"
00017 #include "../Reseau/NetServer.h"
00018 #include "OrdonanceurType.h"
00019
00020
00021
00022
00023 class OrdonanceurServer
00024 {
00025 private :
00026 NetServer Server;
00027
00028
00029 public :
00030
00031
00032 OrdonanceurServer();
00033
00034
00035
00036 ~OrdonanceurServer();
00037
00038
00039
00040
00041
00042
00043
00044 int Start(int iPort, char *pPass);
00045
00046
00047
00048
00049
00050 int Stop();
00051 };
00052
00053
00054 #endif
00055