Basic CSI functions

This commit is contained in:
Keith Winstein
2011-01-22 02:35:17 -05:00
parent c1d6b3f30e
commit d189b2af36
7 changed files with 184 additions and 14 deletions
+15
View File
@@ -12,3 +12,18 @@ void Execute::act_on_terminal( Terminal::Emulator *emu )
{
emu->execute( this );
}
void Clear::act_on_terminal( Terminal::Emulator *emu )
{
emu->clear();
}
void Param::act_on_terminal( Terminal::Emulator *emu )
{
emu->param( this );
}
void CSI_Dispatch::act_on_terminal( Terminal::Emulator *emu )
{
emu->CSI_dispatch( this );
}