diff --git a/src/qgcunittest/TCPLoopBackServer.cc b/src/qgcunittest/TCPLoopBackServer.cc index 07c1644..0198ade 100644 --- a/src/qgcunittest/TCPLoopBackServer.cc +++ b/src/qgcunittest/TCPLoopBackServer.cc @@ -23,6 +23,11 @@ #include "TCPLoopBackServer.h" +/// @file +/// @brief Simple TCP loop back server +/// +/// @author Don Gagne + TCPLoopBackServer::TCPLoopBackServer(QHostAddress hostAddress, quint16 port) : _hostAddress(hostAddress), _port(port), diff --git a/src/qgcunittest/TCPLoopBackServer.h b/src/qgcunittest/TCPLoopBackServer.h index b433efc..c403671 100644 --- a/src/qgcunittest/TCPLoopBackServer.h +++ b/src/qgcunittest/TCPLoopBackServer.h @@ -28,6 +28,11 @@ #include #include +/// @file +/// @brief Simple TCP loop back server +/// +/// @author Don Gagne + class TCPLoopBackServer : public QThread { Q_OBJECT