00001
00002
00003 #include <iostream>
00004
00005 //#include "simplesmartptrtest.h"
00006 #include "zipfiletest.h"
00007
00008 using std::cout;
00009 using std::endl;
00010 using namespace zipios;
00011
00012 int main() {
00013 try {
00014 // SimpleSmartPointerTest sspt;
00015 // sspt.runTests();
00016
00017 ZipFileTest zipFileTest;
00018 zipFileTest.runTests();
00019 } catch (exception &ex) {
00020 cout << "Exception: " << ex.what() << endl;
00021 return 1;
00022 }
00023 return 0;
00024 }
1.2.0 written by Dimitri van Heesch,
© 1997-2000