#ifndef __WORKSTATION_H
#define __WORKSTATION_H

// Antonio Ospite 408/244

#include "Node.h"

class Workstation : public Node
{
public:
   Workstation(const Address&, PacketFactory* );
   ~Workstation();
private:
   void handle( const Packet& ) const;		
};
#endif