10 lines
213 B
C++
10 lines
213 B
C++
#ifndef ABSTRACTROUTER_T_H_INCLUDED
|
|
#define ABSTRACTROUTER_T_H_INCLUDED
|
|
|
|
#include <memory>
|
|
|
|
class AbstractRouter;
|
|
typedef std::shared_ptr<AbstractRouter> SPtrAbstractRouter;
|
|
|
|
#endif // ABSTRACTROUTER_T_H_INCLUDED
|