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

#ifndef LEMUR_H
#define LEMUR_H

#include "prog3.h"

class Lemur: public Animal
{
 public:
   Lemur(){id = 5;}
   Lemur(int ham, int cost, int hi, int tr);
   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 ham, int hi, int tr);  //returns price for tree
   int get_id(){return id;}  //returns 5 for lemurs
 private:
   int id;  //set as 5 for lemurs
   int height;  //height of the tree
   int tree;  //type of tree
   int num_ham;  //number of hammocks for the house
   int price;  //total price of the house
};

#endif  //LEMUR_H