00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 #ifndef __CXUTILS_H 00041 #define __CXUTILS_H 00042 00043 #include "time.h" // Time information. 00044 #include "thread.h" // Thread class. 00045 #include "mutex.h" // Mutex class. 00046 #include "packet.h" // Packet class for storing buffered data. 00047 #include "serial.h" // Serial class interface. 00048 00049 #include "fileio.h" // File IO functions. 00050 #include "timer.h" // Precise timing operations. 00051 #include "joystick.h" // Joystick interface class. 00052 #include "keyboard.h" // Keyboard functions. 00053 #include "mouse.h" // Mouse input functions. 00054 00055 #include "circulararray.h" // Circular array template for fixed memory size, but fast lookup array. 00056 00057 #include "math/cxmath.h" // Useful math tools. 00058 00059 #include "images/image.h" // Some useful image compression/decompression routines. 00060 00061 // Networking Tools 00062 #include "networking/socket.h" // Socket base class for networking. 00063 #include "networking/udpclient.h" // UDP client connections. 00064 #include "networking/udpserver.h" // UDP server connections. 00065 #include "networking/tcplistensocket.h" // Create TCP server connections. 00066 #include "networking/tcpserver.h" // TCP server connections. 00067 #include "networking/tcpclient.h" // TCP client connections. 00068 #include "networking/udpsharedserver.h" // Multi-Process UDP Server. 00069 00070 // Interprocess communication. 00071 #include "ipc/mappedmemory.h" // Shared/mapped memory class. 00072 #include "ipc/mappedmessagebox.h" // Shared/mapped memory message box. 00073 #include "ipc/messageserver.h" // Shared/mapped memory message server. 00074 #include "ipc/messageclient.h" // Shared/mapped memory message client. 00075 00076 #endif 00077 /* End of File */