Files Classes Functions Hierarchy
00001 #ifndef TOKENIZERTEST_H 00002 #define TOKENIZERTEST_H 00003 00004 namespace misclib_testcode 00005 { 00006 00010 class tokenizertest 00011 { 00012 static void example01(string& s); 00013 static void example02(string& s); 00014 static void example03(string& s); 00015 public: 00016 00018 static string doc[]; 00019 00021 void test00(); 00023 void test01(); 00025 void test02(); 00027 void test03(); 00029 void test04(); 00030 void test05(); 00031 void test06(); 00033 void test07(); 00035 void test08(); 00037 void test09(); 00038 00040 static void test10(); 00043 static int unittest01(); 00045 static int unittest02(); 00047 static int unittest03(); 00048 00049 00050 static int unittest04(); 00051 00052 }; 00053 00054 00056 class InventoryObj 00057 { 00058 public: 00059 string item; 00060 int quantity; 00061 string desc; 00062 string sn; 00063 double cost; 00064 00065 stringc xml(); 00066 }; 00067 00068 } 00069 00070 #endif 00071 00072
1.5.8