1
0

Remove smart pointer macros

This commit is contained in:
peterbell10
2017-07-20 12:19:18 +01:00
committed by Tiger Wang
parent 895987a111
commit a56cfd1f42
44 changed files with 83 additions and 88 deletions

View File

@@ -21,10 +21,10 @@
// fwd:
class cTCPLinkImpl;
typedef SharedPtr<cTCPLinkImpl> cTCPLinkImplPtr;
typedef std::shared_ptr<cTCPLinkImpl> cTCPLinkImplPtr;
typedef std::vector<cTCPLinkImplPtr> cTCPLinkImplPtrs;
class cServerHandleImpl;
typedef SharedPtr<cServerHandleImpl> cServerHandleImplPtr;
typedef std::shared_ptr<cServerHandleImpl> cServerHandleImplPtr;
typedef std::vector<cServerHandleImplPtr> cServerHandleImplPtrs;