// TODO: Implement ReliabilityLayer.h #ifndef __RELIABILITY_LAYER_H #define __RELIABILITY_LAYER_H #include "SocketLayer.h" #include "MTUSize.h" class ReliabilityLayer { public: /// Constructor ReliabilityLayer(); // Initialize the variables void InitializeVariables( void ); }; #endif