Go to the documentation of this file.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_IP_ADDRESS_H
00041 #define __CXUTILS_IP_ADDRESS_H
00042
00043 #include <string>
00044 #include <set>
00045 #include <vector>
00046 #include "cxutils/cxbase.h"
00047
00048 namespace CxUtils
00049 {
00056 class CX_UTILS_DLL IPAddress
00057 {
00058 public:
00059 IPAddress();
00060 virtual ~IPAddress();
00061 virtual void Clear() = 0;
00062 static bool IsIP4(const std::string& address);
00063 static bool IsIP6(const std::string& address);
00064 };
00065 }
00066
00067 #endif
00068
00069