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
View File
@@ -152,3 +152,10 @@ void Emulator::resize( size_t s_width, size_t s_height )
{
fb.resize( s_width, s_height );
}
bool Emulator::operator==( Emulator const &x ) const
{
assert( dispatch == x.dispatch );
assert( user == x.user );
return fb == x.fb;
}