mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-12-26 14:11:18 +01:00
removing constexpr
This commit is contained in:
@@ -15,9 +15,9 @@ class ServerSocket : public DataSocket {
|
||||
public:
|
||||
ServerSocket(int port);
|
||||
ServerInterface2 accept();
|
||||
constexpr IpAddr getLastClient() noexcept { return lastClient; }
|
||||
constexpr IpAddr getThisClient() noexcept { return thisClient; }
|
||||
constexpr IpAddr getLockedBy() noexcept { return lockedBy; }
|
||||
IpAddr getLastClient() noexcept { return lastClient; }
|
||||
IpAddr getThisClient() noexcept { return thisClient; }
|
||||
IpAddr getLockedBy() noexcept { return lockedBy; }
|
||||
void setLockedBy(IpAddr addr) { lockedBy = addr; }
|
||||
void setLastClient(IpAddr addr) { lastClient = addr; }
|
||||
int getPort() const;
|
||||
|
||||
Reference in New Issue
Block a user