// Test program for the array-based stack class #include using namespace std; #include "book.h" #include "astack.ht" #include "StackTest.h" // Driver class for list implementations // Main routine for array-based list driver class int main(int argc, char** argv) { // Declare some sample lists AStack S1; AStack S2(15); AStack S3; StackTest(S1); StackTest(S3); return 0; }