14 lines
364 B
C++
14 lines
364 B
C++
#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::unique_ptr<IPacketHandler> UPtrIPacketHandler;
|
|
typedef std::list<SPtrIPacketHandler> SPtrIPacketHandlerList;
|
|
|
|
#endif // ABSTRACTPACKETHANDLER_T_H_INCLUDED
|