/*
 * 2004 Utah High School Programming Contest, University of Utah
 * Take-Home Problem
 *
 * main.cpp
 *
 * This file contains the implementation of the C++ main function.
 */

// Avoid a harmless STL-related warning from Microsoft C++ compilers.
#ifdef _MSC_VER
#pragma warning(disable:4786)
#endif

#include "Decrypt.hpp"

/**
 * The main function for the cryptogram-solving program.  This function merely
 * invokes the `main' method of the Decrypt class.
 *
 * @param argc    the number of command line arguments
 * @param argv    the array of command line arguments (strings)
 */
int main(int argc, char *argv[]) {
    return Decrypt::main(argc, argv);
}

// End of file.

