mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-17 02:45:33 +08:00
Doxygen
This commit is contained in:
committed by
Mat Sutcliffe
parent
2c89275ea6
commit
11ee2413b5
@@ -17,6 +17,8 @@ namespace BlackCore
|
||||
{
|
||||
namespace Fsd
|
||||
{
|
||||
//! Request to send plane information.
|
||||
//! Shall be answered by a PlaneInformation message.
|
||||
class BLACKCORE_EXPORT PlaneInfoRequest : public MessageBase
|
||||
{
|
||||
public:
|
||||
@@ -24,20 +26,27 @@ namespace BlackCore
|
||||
|
||||
virtual ~PlaneInfoRequest() {}
|
||||
|
||||
//! Message converted to tokens
|
||||
QStringList toTokens() const;
|
||||
|
||||
//! Construct from tokens
|
||||
static PlaneInfoRequest fromTokens(const QStringList &tokens);
|
||||
|
||||
//! PDU identifier
|
||||
static QString pdu() { return QStringLiteral("#SB"); }
|
||||
|
||||
private:
|
||||
PlaneInfoRequest();
|
||||
};
|
||||
|
||||
//! Equal to operator
|
||||
inline bool operator==(const PlaneInfoRequest &lhs, const PlaneInfoRequest &rhs)
|
||||
{
|
||||
return lhs.sender() == rhs.sender() &&
|
||||
lhs.receiver() == rhs.receiver();
|
||||
}
|
||||
|
||||
//! Not equal to operator
|
||||
inline bool operator!=(const PlaneInfoRequest &lhs, const PlaneInfoRequest &rhs)
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
|
||||
Reference in New Issue
Block a user