docs: use new member reference shorthand

This commit is contained in:
outfoxxed 2024-07-21 17:41:49 -07:00
parent dfcf533424
commit a9e4720fae
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
35 changed files with 182 additions and 146 deletions

View file

@ -43,7 +43,7 @@ protected:
};
///! Parser for streamed input data.
/// See also: @@DataStream$, @@SplitParser
/// See also: @@DataStream, @@SplitParser.
class DataStreamParser: public QObject {
Q_OBJECT;
QML_ELEMENT;
@ -61,9 +61,7 @@ signals:
};
///! Parser for delimited data streams.
/// Parser for delimited data streams. [read()] is emitted once per delimited chunk of the stream.
///
/// [read()]: ../datastreamparser#sig.read
/// Parser for delimited data streams. @@read() is emitted once per delimited chunk of the stream.
class SplitParser: public DataStreamParser {
Q_OBJECT;
/// The delimiter for parsed data. May be multiple characters. Defaults to `\n`.