add Ip6toipv4Handler

This commit is contained in:
stubbfel
2016-12-02 01:04:42 +01:00
parent 71cb07ea9a
commit 41f8c9243f
19 changed files with 283 additions and 95 deletions

12
src/IPacketHandler_t.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef IPACKETHANDLER_T_H
#define IPACKETHANDLER_T_H
#include <list>
#include <memory>
#include "Main_t.h"
interface IPacketHandler;
typedef std::shared_ptr<IPacketHandler> SPtrIPacketHandler;
typedef std::list<SPtrIPacketHandler> SPtrIPacketHandlerList;
#endif // ABSTRACTPACKETHANDLER_T_H_INCLUDED