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

#ifndef PROMPT_H
#define PROMPT_H

#include <string>
#include <unistd.h>
using namespace std;

/*	Prompt
*	Provides a prompt for the shell.
*/
class Prompt
{
	protected:
		string prmpt;
	public:
		Prompt();
		void setPrompt();
		string get();
};

#endif

