c++ programming with lists and arrays
/* Overload additional operations for the List class and templatize the * class. * * This file is a stub for a main() function so that we can build a * version suitable for running in the debugger. */ #include "List.hpp" #include <iostream> using namespace std; /** @brief Main entry point * * Main entry point for debugging functions. * * @param argc The command line argument count, the number of arguments * provided by user on the command line. * @param argv An array of char* old style c-strings. Each argv[x] * that is passed in holds one of the command line arguments provided * by the user to the program when started. * * @returns int Returns 0 to indicate successfull completion of program, * and a non-zero value to indicate an error code. */ int main(int argc, char** argv) { // do something here to test/debug the assignment code cout << "Hello Assignment Overloading and Templates" << endl; // return 0 to indicate successful completion of program return 0; }