mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-26 16:20:03 +02:00
17 lines
286 B
C++
17 lines
286 B
C++
#pragma once
|
|
#include "DataSocket.h"
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
#include <netdb.h>
|
|
#include <string>
|
|
|
|
namespace sls{
|
|
|
|
class ClientSocket: public DataSocket{
|
|
public:
|
|
ClientSocket(const std::string& hostname, uint16_t port_number);
|
|
private:
|
|
|
|
};
|
|
|
|
}; //namespace sls
|