Added the beginnings of Boost.Function and Boost.Threads for callback handling and threaded network handling

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@6 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-05-18 14:18:13 +00:00
parent 9602c23c05
commit 026ebea111
13 changed files with 303 additions and 141 deletions

View File

@@ -30,15 +30,19 @@
#ifndef _SL_DECODER_
#define _SL_DECODER_
#include "includes.h"
#include "includes.h"
#include "Network.h"
class Decoder
{
protected:
Network* _network;
public:
Decoder();
Decoder(Network* network);
virtual ~Decoder();
int decodePackets();
};
#endif //_SL_DECODER_