ex3_11c.h - Example 3-11 Multi-file application - card header file

// File: ex3_11c.h - card class definition

#ifndef EX3_11C_H
#define EX3_11C_H

class card
{
  private:
    int value;
    int suit;
  public:
    void assign(int);
    int get_value(void) const;
    int get_suit(void) const;
    void print(void) const;
};

#endif



CIS27: Programming in C++    Instructor: Joe Bentley