first classes

This commit is contained in:
stubbfel
2016-11-21 01:02:46 +01:00
commit ce12764a4b
14 changed files with 227 additions and 0 deletions

9
src/AbstractRouter_t.h Normal file
View File

@@ -0,0 +1,9 @@
#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