Cleanup: remove author/date info from doxy headers

This commit is contained in:
Campbell Barton 2019-02-02 11:53:07 +11:00
parent a3bf8da875
commit 4ef09cf937
320 changed files with 2 additions and 638 deletions

@ -48,9 +48,8 @@
* \file atomic_ops.h
* \ingroup Atomic
*
* \author Copyright (C) 2016 Blender Foundation, adapted from jemalloc.
* \brief Provides wrapper around system-specific atomic primitives, and some extensions (faked-atomic operations
* over float numbers).
* \brief Provides wrapper around system-specific atomic primitives,
* and some extensions (faked-atomic operations over float numbers).
*/
#ifndef __ATOMIC_OPS_H__

@ -35,9 +35,6 @@
* You can create a offscreen context (windowless) with the system's
* GHOST_ISystem::createOffscreenContext method.
* \see GHOST_ISystem#createOffscreenContext
*
* \author Clément Foucault
* \date Feb 9, 2018
*/
class GHOST_IContext
{

@ -39,8 +39,6 @@ class GHOST_IWindow;
* event data to the correct event dat structure.
* \see GHOST_IEventConsumer#processEvent
* \see GHOST_TEventType
* \author Maarten Gribnau
* \date May 31, 2001
*/
class GHOST_IEvent
{

@ -34,8 +34,6 @@
* they want to receive events. The system will call the processEvent() method
* for every installed event consumer to pass events.
* \see GHOST_ISystem#addEventConsumer
* \author Maarten Gribnau
* \date May 14, 2001
*/
class GHOST_IEventConsumer
{

@ -127,8 +127,6 @@ class GHOST_IEventConsumer;
* -# Access to the state of the mouse buttons and the keyboard.
* -# Menus for windows with events generated when they are accessed (this is
* work in progress).
* \author Maarten Gribnau
* \date May 30, 2001
*/
class GHOST_ISystem
{

@ -39,8 +39,6 @@
* process messages in order for the timer-callbacks to be called.
* \see GHOST_ISystem#installTimer
* \see GHOST_TimerProcPtr
* \author Maarten Gribnau
* \date May 31, 2001
*/
class GHOST_ITimerTask
{

@ -43,9 +43,6 @@
* upper left corner of the screen.</li>
* - The client rectangle coordinate system. The client rectangle of a window
* is the area that is drawable by the application (excluding title bars etc.).
*
* \author Maarten Gribnau
* \date May 31, 2001
*/
class GHOST_IWindow
{

@ -33,8 +33,6 @@
* The four extreme coordinates are stored as left, top, right and bottom.
* To be valid, a rectangle should have a left coordinate smaller than or equal to right.
* To be valid, a rectangle should have a top coordinate smaller than or equal to bottom.
* \author Maarten Gribnau
* \date May 10, 2001
*/
class GHOST_Rect {

@ -31,8 +31,6 @@
/**
* This struct stores the state of the mouse buttons.
* Buttons can be set using button masks.
* \author Maarten Gribnau
* \date May 15, 2001
*/
struct GHOST_Buttons {
/**

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date October 25, 2001
*/
#include "GHOST_Debug.h"

@ -31,8 +31,6 @@
/**
* Event consumer that will forward events to a call-back routine.
* Especially useful for the C-API.
* \author Maarten Gribnau
* \date October 25, 2001
*/
class GHOST_CallbackEventConsumer : public GHOST_IEventConsumer
{

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date September 21, 2001
*/
#include "GHOST_DisplayManager.h"

@ -31,8 +31,6 @@
/**
* Manages system displays (platform independent implementation).
* \author Maarten Gribnau
* \date September 21, 2001
*/
class GHOST_DisplayManager
{

@ -34,8 +34,6 @@
/**
* Manages system displays (Mac OSX/Cocoa implementation).
* \see GHOST_DisplayManager
* \author Maarten Gribnau
* \date September 21, 2001
*/
class GHOST_DisplayManagerCocoa : public GHOST_DisplayManager
{

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_DisplayManagerWin32.cpp
* \ingroup GHOST
* \author Maarten Gribnau
* \date September 21, 2001
*/
#include "GHOST_DisplayManagerWin32.h"

@ -34,8 +34,6 @@
/**
* Manages system displays (WIN32 implementation).
* \author Maarten Gribnau
* \date September 21, 2001
*/
class GHOST_DisplayManagerWin32 : public GHOST_DisplayManager
{

@ -32,8 +32,6 @@ class GHOST_SystemX11;
/**
* Manages system displays (X11 implementation).
* \author Laurence Bourn
* \date October 26, 2001
*/
class GHOST_DisplayManagerX11 : public GHOST_DisplayManager
{

@ -30,8 +30,6 @@
/**
* Base class for events received the operating system.
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_Event : public GHOST_IEvent
{

@ -29,8 +29,6 @@
/**
* Mouse button event.
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_EventButton : public GHOST_Event
{

@ -29,8 +29,6 @@
/**
* Cursor event.
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_EventCursor : public GHOST_Event
{

@ -29,8 +29,6 @@
/**
* Key event.
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_EventKey : public GHOST_Event
{

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 14, 2001
*/
#include "GHOST_EventManager.h"

@ -30,8 +30,6 @@
/**
* Generic class for events with string data
* \author Damien Plisson
* \date Feb 1, 2010
*/
class GHOST_EventString : public GHOST_Event
{

@ -31,8 +31,6 @@
* Mouse wheel event.
* The displacement of the mouse wheel is counted in ticks.
* A positive value means the wheel is turned away from the user.
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_EventWheel : public GHOST_Event
{

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 7, 2001
*/
#include "GHOST_ISystem.h"

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 7, 2001
*/

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 31, 2001
*/
#include "GHOST_ModifierKeys.h"

@ -30,8 +30,6 @@
/**
* Stores the state of modifier keys.
* Discriminates between left and right modifier keys.
* \author Maarten Gribnau
* \date May 17, 2001
*/
struct GHOST_ModifierKeys {
/**

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_System.cpp
* \ingroup GHOST
* \author Maarten Gribnau
* \date May 7, 2001
*/
#include "GHOST_System.h"

@ -50,8 +50,6 @@ class GHOST_NDOFManager;
* GHOST_System is an abstract class because not all methods of GHOST_ISystem
* are implemented.
* \see GHOST_ISystem.
* \author Maarten Gribnau
* \date May 7, 2001
*/
class GHOST_System : public GHOST_ISystem
{

@ -40,8 +40,6 @@
/**
* WIN32 Implementation of GHOST_SystemPaths class.
* \see GHOST_SystemPaths.
* \author Andrea Weikert
* \date August 1, 2010
*/
class GHOST_SystemPathsWin32 : public GHOST_SystemPaths {
public:

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_SystemWin32.cpp
* \ingroup GHOST
*
* \author Maarten Gribnau
*/

@ -51,8 +51,6 @@ class GHOST_WindowWin32;
/**
* WIN32 Implementation of GHOST_System class.
* \see GHOST_System.
* \author Maarten Gribnau
* \date May 10, 2001
*/
class GHOST_SystemWin32 : public GHOST_System {
public:

@ -71,8 +71,6 @@ class GHOST_WindowX11;
/**
* X11 Implementation of GHOST_System class.
* \see GHOST_System.
* \author Laurence Bourn
* \date October 26, 2001
*/
class GHOST_SystemX11 : public GHOST_System {

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 31, 2001
*/
#include "GHOST_TimerManager.h"

@ -36,8 +36,6 @@ class GHOST_TimerTask;
* Manages a list of timer tasks.
* Timer tasks added are owned by the manager.
* Don't delete timer task objects.
* \author Maarten Gribnau
* \date May 31, 2001
*/
class GHOST_TimerManager
{

@ -30,8 +30,6 @@
/**
* Implementation of a timer task.
* \author Maarten Gribnau
* \date May 28, 2001
*/
class GHOST_TimerTask : public GHOST_ITimerTask
{

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 10, 2001
*/
#include "GHOST_Window.h"

@ -36,8 +36,6 @@ class GHOST_Context;
* upper-left corner of the screen.
* Implements part of the GHOST_IWindow interface and adds some methods to
* be implemented by childs of this class.
* \author Maarten Gribnau
* \date May 7, 2001
*/
class GHOST_Window : public GHOST_IWindow
{

@ -24,8 +24,6 @@
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 11, 2001
*/
#include "GHOST_WindowManager.h"

@ -33,8 +33,6 @@
/**
* Manages system windows (platform independent implementation).
* \author Maarten Gribnau
* \date May 11, 2001
*/
class GHOST_WindowManager
{

@ -135,8 +135,6 @@ typedef BOOL (API * GHOST_WIN32_GetPointerPenInfo)(UINT32 pointerId, POINTER_PEN
/**
* GHOST window on M$ Windows OSs.
* \author Maarten Gribnau
* \date May 10, 2001
*/
class GHOST_WindowWin32 : public GHOST_Window {
public:

@ -47,8 +47,6 @@ class GHOST_DropTargetX11;
/**
* X11 implementation of GHOST_IWindow.
* Dimensions are given in screen coordinates that are relative to the upper-left corner of the screen.
* \author Laurence Bourn
* \date October 26, 2001
*/
class GHOST_WindowX11 : public GHOST_Window

@ -24,8 +24,6 @@
* Simple test file for the GHOST library.
* The OpenGL gear code is taken from the Qt sample code which,
* in turn, is probably taken from somewhere as well.
* \author Maarten Gribnau
* \date May 31, 2001
*/
#include <stdlib.h>

@ -22,8 +22,6 @@
* Simple test file for the GHOST library.
* The OpenGL gear code is taken from the Qt sample code which,
* in turn, is probably taken from somewhere as well.
* \author Maarten Gribnau
* \date May 31, 2001
* Stereo code by Raymond de Vries, januari 2002
*/

@ -21,7 +21,6 @@
* \file MEM_guardedalloc.h
* \ingroup MEM
*
* \author Copyright (C) 2001 NaN Technologies B.V.
* \brief Read \ref MEMPage
*
* \page MEMPage Guarded memory(de)allocation

@ -19,7 +19,6 @@
/** \file mmap_win.h
* \ingroup MEM
* \author Andrea Weikert
*/
#ifndef __MMAP_WIN_H__

@ -27,7 +27,6 @@
* Copyright (C) 2001 NaN Technologies B.V.
*
* \author Laurence, Brecht
* \page IK - Blender inverse kinematics module.
*
* \section about About the IK module

@ -2,7 +2,6 @@
* \ingroup itasc
*/
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -12,7 +12,6 @@
*
* It also contains the 2nd derivative <-> RFrames.h
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -2,7 +2,6 @@
* \file
* provides inline functions of rrframes.h
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -109,7 +109,6 @@
* Sometimes the amount of work is given in the documentation
* e.g. 6M+3A means 6 multiplications and 3 additions.
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
****************************************************************************/

@ -2,7 +2,6 @@
* \ingroup itasc
*/
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -6,7 +6,6 @@
* this classes are usefull for automatic differentiation ( <-> symbolic diff , <-> numeric diff)
* Defines VectorVel, RotationVel, FrameVel. Look at Frames.h for details on how to work
* with Frame objects.
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -2,7 +2,6 @@
* \file
* provides inline functions of rframes.h
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -29,7 +29,6 @@
/*****************************************************************************
* \file
* Defines the exception classes that can be thrown
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -2,7 +2,6 @@
* \ingroup itasc
*/
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -28,7 +28,6 @@
/**
* \file
* \author Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* \version
* ORO_Geometry V0.2
*

@ -4,7 +4,6 @@
* class for automatic differentiation on scalar values and 1st
* derivatives .
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -4,7 +4,6 @@
* class for automatic differentiation on scalar values and 1st
* derivatives and 2nd derivative.
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -1,5 +1,4 @@
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -2,7 +2,6 @@
* \ingroup itasc
*/
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -1,5 +1,4 @@
/*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version

@ -22,10 +22,6 @@
/** \file BKE_action.h
* \ingroup bke
* \brief Blender kernel action and pose functionality.
* \author Reevan McKay
* \author Ton Roosendaal (full recode 2005)
* \author Joshua Leung (full recode 2009)
* \since may 2001
*/
#include "DNA_listBase.h"

@ -21,8 +21,6 @@
/** \file BKE_anim.h
* \ingroup bke
* \author nzc
* \since March 2001
*/
struct Depsgraph;
struct ListBase;

@ -22,7 +22,6 @@
/** \file BKE_animsys.h
* \ingroup bke
* \author Joshua Leung
*/
struct AnimData;

@ -21,8 +21,6 @@
/** \file BKE_armature.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
struct Bone;

@ -21,8 +21,6 @@
/** \file BKE_blender.h
* \ingroup bke
* \since March 2001
* \author nzc
* \brief Blender util stuff
*/

@ -22,8 +22,6 @@
/** \file BKE_boids.h
* \ingroup bke
* \since 2009
* \author Janne Karhu
*/
#include "DNA_boid_types.h"

@ -21,7 +21,6 @@
/** \file BKE_cloth.h
* \ingroup bke
* \author Daniel Genrich
*/
#include <float.h>

@ -21,7 +21,6 @@
/** \file BKE_collision.h
* \ingroup bke
* \author Daniel Genrich
*/
#include <math.h>

@ -22,7 +22,6 @@
/** \file BKE_constraint.h
* \ingroup bke
* \author Joshua Leung (major recode 2007)
*/
struct Depsgraph;

@ -21,8 +21,6 @@
/** \file BKE_curve.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
struct BezTriple;

@ -19,7 +19,6 @@
/** \file BKE_customdata.h
* \ingroup bke
* \author Ben Batt
* \brief CustomData interface, see also DNA_customdata_types.h.
*/

@ -22,8 +22,6 @@
/** \file BKE_deform.h
* \ingroup bke
* \since June 2001
* \author Reevan McKay et al
* \brief support for deformation groups and hooks.
*/

@ -21,8 +21,6 @@
/** \file BKE_effect.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#include "DNA_modifier_types.h"

@ -22,8 +22,6 @@
/** \file BKE_fcurve.h
* \ingroup bke
* \author Joshua Leung
* \since 2009
*/
#ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_global.h
* \ingroup bke
* \since March 2001
* \author nzc
* \section aboutglobal Global settings
* Global settings, handles, pointers. This is the root for finding
* any data in Blender. This block is not serialized, but built anew

@ -22,7 +22,6 @@
/** \file BKE_gpencil.h
* \ingroup bke
* \author Joshua Leung
*/
struct ArrayGpencilModifierData;

@ -19,7 +19,6 @@
/** \file BKE_idprop.h
* \ingroup bke
* \author Joseph Eagar
*/
#include "DNA_ID.h"

@ -21,8 +21,6 @@
/** \file BKE_image.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#ifdef __cplusplus

@ -21,9 +21,6 @@
/** \file BKE_ipo.h
* \ingroup bke
* \since March 2001
* \author nzc
* \author Joshua Leung
*/
#ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_key.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
struct Curve;
struct ID;

@ -22,8 +22,6 @@
/** \file BKE_lattice.h
* \ingroup bke
* \author Ton Roosendaal
* \since June 2001
*/
#include "BLI_compiler_attrs.h"

@ -21,8 +21,6 @@
/** \file BKE_library.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#ifdef __cplusplus
extern "C" {

@ -22,8 +22,6 @@
/** \file BKE_library_override.h
* \ingroup bke
* \since December 2016
* \author mont29
*/
struct ID;

@ -21,8 +21,6 @@
/** \file BKE_library_query.h
* \ingroup bke
* \since March 2014
* \author sergey
*/
struct ID;

@ -21,8 +21,6 @@
/** \file BKE_main.h
* \ingroup bke
* \since March 2001
* \author nzc
* \section aboutmain Main struct
* Main is the root of the 'database' of a Blender context. All data
* is stuffed into lists, and all these lists are knotted to here. A

@ -21,8 +21,6 @@
/** \file BKE_mball.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
struct BoundBox;
struct Depsgraph;

@ -22,7 +22,6 @@
/** \file BKE_movieclip.h
* \ingroup bke
* \author Sergey Sharybin
*/
struct Depsgraph;

@ -22,7 +22,6 @@
/** \file BKE_nla.h
* \ingroup bke
* \author Joshua Leung (full recode)
*/
struct AnimData;

@ -21,8 +21,6 @@
/** \file BKE_packedFile.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#define RET_OK 0
#define RET_ERROR 1

@ -21,8 +21,6 @@
/** \file BKE_scene.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_screen.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
struct ARegion;

@ -22,7 +22,6 @@
/** \file BKE_smoke.h
* \ingroup bke
* \author Daniel Genrich
*/
typedef float (*bresenham_callback)(float *result, float *input, int res[3], int *pixel, float *tRay, float correct);

@ -21,8 +21,6 @@
/** \file BKE_sound.h
* \ingroup bke
* \since March 2001
* \author nzc
*/
#define SOUND_WAVE_SAMPLES_PER_SECOND 250

@ -19,8 +19,6 @@
/** \file BKE_subdiv.h
* \ingroup bke
* \since July 2018
* \author Sergey Sharybin
*/
#ifndef __BKE_SUBDIV_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_ccg.h
* \ingroup bke
* \since July 2018
* \author Sergey Sharybin
*/
#ifndef __BKE_SUBDIV_CCG_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_eval.h
* \ingroup bke
* \since September 2018
* \author Sergey Sharybin
*/
#ifndef __BKE_SUBDIV_EVAL_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_foreach.h
* \ingroup bke
* \since September 2018
* \author Sergey Sharybin
*/
#ifndef __BKE_SUBDIV_FOREACH_H__

Some files were not shown because too many files have changed in this diff Show More