13 lines
220 B
C++
13 lines
220 B
C++
#ifndef DISTRIBUTION_SERVICE_ROUTING_H
|
|
#define DISTRIBUTION_SERVICE_ROUTING_H
|
|
|
|
#include "ByteTool.h"
|
|
#include "DataPacket.h"
|
|
|
|
class Routing {
|
|
public:
|
|
static void RoutingFunction(const DataPacket& packet);
|
|
};
|
|
|
|
|
|
#endif |