Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-09-05 07:56:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-05 07:56:29 +0300
commit44d4a61ed03ac6fc51485ea5621f45098817bcee (patch)
tree030d868d29fc85e3dc0e3040bb831f8239cbf0ea /source/blender/compositor/intern/COM_Device.h
parent1be265afc00057651ee03ccd5137d4a350641787 (diff)
Cleanup: replace doxy @ with backslash
The rest of Blender uses backslashes.
Diffstat (limited to 'source/blender/compositor/intern/COM_Device.h')
-rw-r--r--source/blender/compositor/intern/COM_Device.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/intern/COM_Device.h b/source/blender/compositor/intern/COM_Device.h
index 202ca1d0b4f..8cb1cbebf7f 100644
--- a/source/blender/compositor/intern/COM_Device.h
+++ b/source/blender/compositor/intern/COM_Device.h
@@ -26,7 +26,7 @@
#include "COM_WorkPackage.h"
/**
- * @brief Abstract class for device implementations to be used by the Compositor.
+ * \brief Abstract class for device implementations to be used by the Compositor.
* devices are queried, initialized and used by the WorkScheduler.
* work are packaged as a WorkPackage instance.
*/
@@ -34,24 +34,24 @@ class Device {
public:
/**
- * @brief Declaration of the virtual destructor
- * @note resolve warning gcc 4.7
+ * \brief Declaration of the virtual destructor
+ * \note resolve warning gcc 4.7
*/
virtual ~Device() {}
/**
- * @brief initialize the device
+ * \brief initialize the device
*/
virtual bool initialize() { return true; }
/**
- * @brief deinitialize the device
+ * \brief deinitialize the device
*/
virtual void deinitialize() {}
/**
- * @brief execute a WorkPackage
- * @param work the WorkPackage to execute
+ * \brief execute a WorkPackage
+ * \param work the WorkPackage to execute
*/
virtual void execute(WorkPackage *work) = 0;