mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 21:53:10 +00:00
10 lines
220 B
C++
10 lines
220 B
C++
#include "trick/ClientConnection.hh"
|
|
|
|
std::string Trick::ClientConnection::getClientTag () {
|
|
return _client_tag;
|
|
}
|
|
|
|
int Trick::ClientConnection::setClientTag (std::string tag) {
|
|
_client_tag = tag;
|
|
return 0;
|
|
} |