Import of server, all hooked together

This commit is contained in:
Keith Winstein
2011-08-13 17:10:19 -04:00
parent 71e22ee041
commit 577bfc0dae
20 changed files with 355 additions and 70 deletions
+7 -1
View File
@@ -21,7 +21,13 @@ namespace Terminal {
std::string open( void ) { return terminal.open(); }
std::string close( void ) { return terminal.close(); }
const Framebuffer & get_fb( void ) { return terminal.get_fb(); }
const Framebuffer & get_fb( void ) const { return terminal.get_fb(); }
/* interface for Network::Transport */
void subtract( const Complete * ) {}
std::string diff_from( const Complete &existing );
void apply_string( std::string diff );
bool operator==( const Complete &x ) const;
};
}