// // C++ Implementation: clientstream_test // // Description: // // // Author: Kopete Developers , (C) 2004 // Licensed under the GNU General Public License #ifndef IPADDRTEST_H #define IPADDRTEST_H #include #include #include #include "oscarutils.h" #define TQT_FATAL_ASSERT 1 class IPAddrTest : public TQApplication { public: IPAddrTest(int argc, char ** argv); ~IPAddrTest(); bool testDottedDecimal(); bool testNumericalIP(); bool testAllZeroDotted(); bool testAllZeroNumerical(); void CheckTest(bool TestPassed); }; #endif