1
0
UAHCode/CPE212/Project_02/redcard.h

28 lines
638 B
C
Raw Permalink Normal View History

2022-08-28 21:12:16 +00:00
//
// redcards.h -- CPE 212-01, Fall 2010 -- Project02 -- Classes
//
// DO NOT MODIFY OR SUBMIT THIS FILE!!!
//
#ifndef REDCARD_H
#define REDCARD_H
#include "card.h"
class RedCard : public Card
{
private:
// No additional private members
public:
// Constructors
RedCard(int v); // Creates a red card with value v and unknown suit
string Description() const; // Outputs card characteristics - value and color as a string
// Hint: use base class Description method to generate part of
// the description and append the color information at the end
};
#endif