doxygen @ tags replaced to \

This commit is contained in:
2022-03-14 21:19:31 +03:00
parent 9bf1a11701
commit 54b5372356
142 changed files with 1079 additions and 1079 deletions

View File

@@ -1,5 +1,5 @@
/*! @file pibinarylog.h
* @brief Binary log
/*! \file pibinarylog.h
* \brief Binary log
*/
/*
PIP - Platform Independent Primitives
@@ -33,14 +33,14 @@ public:
explicit PIBinaryLog();
virtual ~PIBinaryLog();
//! @brief Play modes for \a PIBinaryLog
//! \brief Play modes for \a PIBinaryLog
enum PlayMode {
PlayRealTime /*! Play in system realtime, default mode */ ,
PlayVariableSpeed /*! Play in software realtime with speed, set by \a setSpeed */ ,
PlayStaticDelay /*! Play with custom static delay, ignoring timestamp */
};
//! @brief Different split modes for writing \a PIBinaryLog, which can separate files by size, by time or by records count
//! \brief Different split modes for writing \a PIBinaryLog, which can separate files by size, by time or by records count
enum SplitMode {
SplitNone /*! Without separate, default mode */ ,
SplitTime /*! Separate files by record time */ ,
@@ -48,7 +48,7 @@ public:
SplitCount /*! Separate files by records count */
};
//! @brief Struct contains information about all records with same ID
//! \brief Struct contains information about all records with same ID
struct PIP_EXPORT BinLogRecordInfo {
BinLogRecordInfo() {
id = count = 0;
@@ -62,7 +62,7 @@ public:
PISystemTime end_time;
};
//! @brief Struct contains full information about Binary Log file and about all Records using map of \a BinLogRecordInfo
//! \brief Struct contains full information about Binary Log file and about all Records using map of \a BinLogRecordInfo
struct PIP_EXPORT BinLogInfo {
PIString path;
int records_count;
@@ -73,7 +73,7 @@ public:
PIByteArray user_header;
};
//! @brief Struct contains position, ID and timestamp of record in file
//! \brief Struct contains position, ID and timestamp of record in file
struct PIP_EXPORT BinLogIndex {
int id;
int data_size;
@@ -256,7 +256,7 @@ public:
//! \{
//! \fn PIString createNewFile()
//! @brief Create new binlog file in \a logDir, if successful returns filename, else returns empty string.
//! \brief Create new binlog file in \a logDir, if successful returns filename, else returns empty string.
//! Filename is like \a filePrefix + "yyyy_MM_dd__hh_mm_ss.binlog"
//! \}
@@ -264,13 +264,13 @@ public:
//! \{
//! \fn void fileEnd()
//! @brief Raise on file end while reading
//! \brief Raise on file end while reading
//! \fn void fileError()
//! @brief Raise on file creation error
//! \brief Raise on file creation error
//! \fn void newFile(const PIString & filename)
//! @brief Raise on new file created
//! \brief Raise on new file created
//! \}
@@ -331,7 +331,7 @@ private:
PIByteArray user_header;
};
//! \relatesalso PICout @brief Output operator PIBinaryLog::BinLogInfo to PICout
//! \relatesalso PICout \brief Output operator PIBinaryLog::BinLogInfo to PICout
inline PICout operator <<(PICout s, const PIBinaryLog::BinLogInfo & bi) {
s.space();
s.setControl(0, true);