Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
Message.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ******************************** WebServer::Message ****************************
10 ********************************************************************************
11 */
12 inline Message::Message (Message&& src) noexcept
13 : Message{move (src.fRequest_), move (src.fResponse_), src.fPeerAddress_}
14 {
15 }
16 inline Message& Message::operator= (Message&& rhs) noexcept
17 {
18 this->fPeerAddress_ = rhs.fPeerAddress_;
19 this->fRequest_ = move (rhs.fRequest_);
20 this->fResponse_ = move (rhs.fResponse_);
21 return *this;
22 }
23
24}