#ifndef KEYBOARD_H
#define KEYBOARD_H

#include <rawinterpreter.h>

//
// Brief: Terminal. 
//
class keyboardinterface
{
public:

  // Process an initial string of commands 
  //   before user if possible. 
  keyboardinterface(string const initinput="");

  // Display the current stack.
  void print();

};







#endif



