mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-21 11:15:27 +01:00
changed constructor
This commit is contained in:
@@ -7,7 +7,11 @@ namespace sls {
|
||||
class DataSocket {
|
||||
public:
|
||||
DataSocket(int socketId);
|
||||
|
||||
DataSocket(DataSocket&& move) noexcept;
|
||||
DataSocket& operator=(DataSocket&& move) noexcept;
|
||||
void swap(DataSocket& other) noexcept;
|
||||
DataSocket(DataSocket const&) = delete;
|
||||
DataSocket& operator=(DataSocket const&) = delete;
|
||||
int getSocketId() const{
|
||||
return socketId_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user