#pragma once class Printer { // YOU MAY ADD PRIVATE MEMBERS public: Printer( const unsigned int NoOfPlayers, const unsigned int NoOfCards ); void print( unsigned int id, int took, unsigned int RemainingPlayers ); // card play void print( unsigned int id ); // drink (Schmilblick) }; // Printer // Local Variables: // // mode: c++ // // compile-command: "make cardgame" // // End: //