/*
 * A Cat, which is a feline animal with a name and number of lives remaining.
 * When a cat has a brush with badLuck, it loses a life.
 */
#ifndef CAT_HPP
#define CAT_HPP

#include <string>
 
class Cat {
  std::string name; 
  int lives;
  
public:
  Cat(const std::string name, int lives = 9);  //constructor, with default arg

  void badLuck();
  int getLives();     //a const could be added before the ; for accessors
  std::string getName();
};

#endif