15 lines
320 B
C++
15 lines
320 B
C++
#pragma once
|
|
|
|
#include "ConnectionManager.h"
|
|
|
|
class CDNConnection;
|
|
class CDNConnectionManager: public CConnectionManager
|
|
{
|
|
public:
|
|
CDNConnectionManager(void);
|
|
virtual ~CDNConnectionManager(void);
|
|
|
|
CConnection* AddConnection(const char *pIp, const USHORT nPort);
|
|
};
|
|
|
|
extern CDNConnectionManager* g_pConnectionManager;
|