Simple actions dispatching on terminal emulator

This commit is contained in:
Keith Winstein
2011-01-21 15:28:13 -05:00
parent ae3fc72e82
commit f40d539f7b
8 changed files with 318 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "parseraction.hpp"
#include "terminal.hpp"
using namespace Parser;
void Print::act_on_terminal( Terminal::Emulator *emu )
{
emu->print( this );
}