//******************************************************************************
//
// CS 240C   : Spring 2003 Ohio University Travis Dillon
// Project 3 : Animal Homes
// file      : bobcat.h
// started   : 05-07-03
// summary   : This is a child of the Animal class.  This class has all
//             the necessary items that a Bobcat den would have.
//
//******************************************************************************

#ifndef BOBCAT_H
#define BOBCAT_H

#include "prog3.h"

class Bobcat: public Animal
{
 public:
   Bobcat(){id = 3;}
   Bobcat(int room, int phone, int comp, int cost);
   void input();  //get object data from user
   void output();  //output object data to screen
   void print(ofstream& fout);  //this ouptuts object data to file
   int set_price(int room, int phone, int comp);  //returns price for den
   int get_id(){return id;}  //returns 3 for bobcats
 private:
   int id;  //set as 3 for bobcats
   int num_room;  //number of rooms
   int num_phone;  //number of phones
   int num_comp;  //number of computers
   int price;  //total price for the house
};

#endif  //BOBCAT_H