Initial network support

This commit is contained in:
Keith Winstein
2011-08-02 12:49:02 -04:00
parent 507e791888
commit 6ea66b7aab
5 changed files with 127 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "network.hpp"
class KeyStroke
{
public:
char letter;
};
int main( void )
{
Network::Connection<KeyStroke> n();
}