| ex3-11.cpp - Example 3-11 Multi-file application - main |
// File: ex3-11.cpp - main()
#include "ex3_11d.h"
int main (void)
{
deck poker;
poker.create_deck();
poker.print();
poker.shuffle();
poker.print();
poker.deal();
poker.deal(3);
return 0;
}