Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
VANet
Commits
86524a80
Commit
86524a80
authored
May 18, 2017
by
Jonas Stienen
Browse files
Remvoing some empty lines
parent
b00cbff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/VANetNetworkProtocol.cpp
View file @
86524a80
...
...
@@ -1452,12 +1452,9 @@ CVAStruct CVANetNetworkProtocol::ClientGetSignalSourceParameters( const std::str
CVANetMessage
*
pMsg
=
ClientInitMessage
(
VA_NP_GET_SIGNALSOURCE_PARAMETERS
,
MESSAGE_ALLOWS_BUFFERING
);
pMsg
->
WriteString
(
sSignalSourceID
);
pMsg
->
WriteVAStruct
(
oParams
);
ClientSendCommand
(
pMsg
);
CVAStruct
oRet
;
pMsg
->
ReadVAStruct
(
oRet
);
return
oRet
;
}
...
...
@@ -1465,15 +1462,11 @@ CVAStruct CVANetNetworkProtocol::ClientGetSignalSourceParameters( const std::str
void
CVANetNetworkProtocol
::
ServerGetSignalSourceParameters
()
{
CVANetMessage
*
pMsg
=
ServerGetMessage
();
std
::
string
sID
=
pMsg
->
ReadString
();
CVAStruct
oParams
;
pMsg
->
ReadVAStruct
(
oParams
);
CVAStruct
oRet
=
m_pRealCore
->
GetSignalSourceParameters
(
sID
,
oParams
);
pMsg
->
WriteVAStruct
(
oRet
);
return
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment