/* Eric Knibbe, David Streng
*  CS 232
*  Project 3
*/

#ifndef DESHELL_H
#define DESHELL_H

#include <sys/wait.h>

#include "CommandLine.cpp"
#include "path.cpp"
#include "prompt.cpp"

/*	DEShell
*	Base shell class. 
*/
class DEShell {
	public:
		DEShell();              //constructor
	        void run();             //execute the shell;
	private:
	        //insert any variables here
};

#endif 

