mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 14:38:14 +02:00
removing constexpr
This commit is contained in:
parent
9a8773d9a5
commit
54983c5fd0
@ -15,11 +15,11 @@ class ServerSocket : public DataSocket {
|
|||||||
public:
|
public:
|
||||||
ServerSocket(int port);
|
ServerSocket(int port);
|
||||||
ServerInterface2 accept();
|
ServerInterface2 accept();
|
||||||
constexpr IpAddr getLastClient() noexcept { return lastClient; }
|
IpAddr getLastClient() noexcept { return lastClient; }
|
||||||
constexpr IpAddr getThisClient() noexcept { return thisClient; }
|
IpAddr getThisClient() noexcept { return thisClient; }
|
||||||
constexpr IpAddr getLockedBy() noexcept { return lockedBy; }
|
IpAddr getLockedBy() noexcept { return lockedBy; }
|
||||||
void setLockedBy(IpAddr addr){ lockedBy = addr; }
|
void setLockedBy(IpAddr addr) { lockedBy = addr; }
|
||||||
void setLastClient(IpAddr addr){ lastClient = addr; }
|
void setLastClient(IpAddr addr) { lastClient = addr; }
|
||||||
int getPort() const;
|
int getPort() const;
|
||||||
void SendResult(int &ret, void *retval, int retvalSize, char *mess);
|
void SendResult(int &ret, void *retval, int retvalSize, char *mess);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user