//****************************************************************************
//
// Cs361      : Fall 2003 Ohio University Travis Dillon
// Homework 5 : Breadth first spanning trees
// file       : prog3.h
// started    : 10-14-03
// summary    : This header file holds all the using and include statements.
//
//****************************************************************************


#ifndef PROG3_H
#define PROG3_H

#include <iostream>
#include <list>
#include <queue>
#include <vector>

using std::cout;
using std::list;
using std::queue;
using std::vector;
using std::endl;
using std::string;
using std::cin;
using std::istream;
using std::ostream;
using std::getline;

#include "node.h"
#include "graph.h"

#endif  //PROG3_H