/** * routetypes.h * Implemented by Blueprint Technologies, Inc. * This file defines the data types * involved in packet routing. */ #ifndef _routetypes_h #define _routetypes_h /** * This is an abstract data type that represents the * address of a node on a network of systems. */ class NetworkAddress { }; /** * This is an abstract data type that represents * a packet of data that is routed through a network. */ class DataPacket { }; #endif