/* File: card.cpp CMSC 202 Computer Science II Spring 2016 Project 2 Implementation of Card member functions. See card.h for documentation. */ #include #include "card.h" using namespace std ; // Default constructor marks card as invalid // Card::Card() { m_suit = Invalid ; m_points = 0 ; } Card::Card(cSuit s, cPoints p) { // your code goes here } Card::cPoints Card::points() { // your code goes here } Card::cSuit Card::suit() { // your code goes here } void Card::print() { // your code goes here }