13 lines
268 B
C++
13 lines
268 B
C++
#ifndef _CDEV_SOCKET_CONNECTOR_H_
|
|
#define _CDEV_SOCKET_CONNECTOR_H_
|
|
|
|
#include "cdevSocketStream.h"
|
|
|
|
class CDEV_REACTOR_API cdevSocketConnector : public cdevSocketStream
|
|
{
|
|
public:
|
|
int connect (const cdevAddr & remote_addr );
|
|
};
|
|
|
|
#endif /* _CDEV_SOCK_CONNECTOR_H */
|