//****************************************************************************
//
// Cs361      : Fall 2003 Ohio University Travis Dillon
// Homework 8 : President of railroad company
// file       : prog6.h
// started    : 10-29-03
// summary    : This header file holds all the using and include statements.
//
//****************************************************************************


#ifndef PROG6_H
#define PROG6_H

const float BIG = 4000000;  //set as a large number that no travel time can be
                           //greater than
#include <iostream>
#include <list>
#include <vector>
#include <fstream>

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

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

#endif  //PROG6_H