//****************************************************************************
//
// Cs361 : Fall 2003 Ohio University Travis Dillon
// Homework 7 : Data Structures R Us Shipping Company
// file : prog5.h
// started : 10-29-03
// summary : This header file holds all the using and include statements.
//
//****************************************************************************
#ifndef PROG5_H
#define PROG5_H
const float BIG = 4000000; //set as a large number that no weight can be
//greater than
#include <iostream>
#include <list>
#include <queue>
#include <vector>
#include <fstream>
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;
using std::ifstream;
using std::ios;
#include "graph.h"
#include "node.h"
#endif //PROG5_H