//****************************************************************************
//
// Cs361 : Fall 2003 Ohio University Travis Dillon
// Homework 6 : Network manager for large software company.
// file : prog4.h
// started : 10-21-03
// summary : This header file holds all the using and include statements.
//
//****************************************************************************
#ifndef PROG4_H
#define PROG4_H
#include <iostream>
#include <list>
#include <vector>
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;
#include "graph.h"
#include "node.h"
#endif //PROG4_H