//******************************************************************************
//
// CS 240C : Spring 2003 Ohio University Travis Dillon
// Project 3 : Animal Homes
// file : prog2.h
// started : 05-07-03
// summary : This header file is for all the include statements.
//
//******************************************************************************
#ifndef PROG3_H
#define PROG3_H
using namespace std;
#include "animal.h"
#include "bat.h"
#include "bear.h"
#include "bobcat.h"
#include "groundhog.h"
#include "lemur.h"
#include "penguin.h"
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <cstdlib>
#include <iomanip>
#include <cmath>
#endif //PROG3_H