/*
 * A Pet is an animal that is named and cared for by a human owner.
 * Thus, every Pet has a name and an owner.
 */
#ifndef PET_HPP
#define PET_HPP

#include <string>
#include <iostream>
 
class Pet {
  std::string name; 
  std::string owner;
  
public:
  Pet(const std::string name, const std::string owner);  
  std::string getName();
  std::string getOwner();
  virtual std::string speak();  //virtual turns on polymorphism
};

#endif