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 piobject.h
* @brief Base object
/*! \file piobject.h
* \brief Base object
*
* This file declare PIObject class
*/
@@ -445,15 +445,15 @@ public:
};
typedef PIPair<const void * , __MetaFunc> __EHPair;
//! @brief Execute all posted events from CONNECTU_QUEUED connections
//! \brief Execute all posted events from CONNECTU_QUEUED connections
void callQueuedEvents();
//! @brief Check if any CONNECTU_QUEUED connections to this object and execute them
//! \brief Check if any CONNECTU_QUEUED connections to this object and execute them
//! \details This function is more optimized than \a callQueuedEvents() for objects that doesn`t
//! appears as \"performer\" target at CONNECTU_QUEUED
bool maybeCallQueuedEvents() {if (proc_event_queue) callQueuedEvents(); return proc_event_queue;}
//! @brief Mark object to delete
//! \brief Mark object to delete
//! \details On first call background thread started to delete objects.
//! Each object deletes when it`s outside from any events and hadlers.
void deleteLater();
@@ -475,7 +475,7 @@ protected:
//! \{
/** \fn void deleted(PIObject * o)
* @brief Raise before object delete
* \brief Raise before object delete
* \note This event raised from destructor, so use only "o" value,
* don`t try to cast deleted object to some subclass! */