/////////////////////////////////////////////////////////////////////////////// // hsunpack.cpp // // This utility uses the Image and Compressor classes to // decompress a .hsc file into a true color BMP file. /////////////////////////////////////////////////////////////////////////////// #include "Compressor.h" #include #include int main (int argc, char ** argv) { // Make sure we have the correct number and style of parameters. if (argc != 2 || argv[1] == NULL || argv[1][0] == 0) { cout << argv[0] << ':' << endl; cout << " This program decompresses a .HSC file into a .BMP file." <