Files Classes Functions Hierarchy
00001 #include <cfcontainerhash.h> 00002 #include <cfcontainervec.h> 00003 #include <projfiles.h> 00004 #include <projfilestest.h> 00005 00006 string projfilestest::doc[] = 00007 { 00008 "", 00009 "Read unique source and header files into container and print.", 00010 "Read unique source and header files into cfcontainerhash container and print." 00011 }; 00012 00013 void projfilestest::test01() 00014 { 00015 projfiles<cfcontainervec> pf; 00016 pf.construct(); 00017 pf.print(); 00018 } 00019 00020 void projfilestest::test02() 00021 { 00022 projfiles<cfcontainerhash> pf; 00023 pf.construct(); 00024 pf.print(); 00025 } 00026 00027
1.5.8