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:
authorMaarten Gribnau <mail@maartengribnau.com>2002-12-30 15:11:03 +0300
committerMaarten Gribnau <mail@maartengribnau.com>2002-12-30 15:11:03 +0300
commit82a1469e4b6d0f2d279ab8a7cbe5bc85e0c23f0d (patch)
tree02ee6cbbfd139808429b312fb809486d9e125ebd /intern/memutil/MEM_SmartPtr.h
parent438ffa7e1d3e76069be1fc04797f1b1ea86663bf (diff)
removed second CVS id tags, cleaned up new lines
Maarten
Diffstat (limited to 'intern/memutil/MEM_SmartPtr.h')
-rw-r--r--intern/memutil/MEM_SmartPtr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/intern/memutil/MEM_SmartPtr.h b/intern/memutil/MEM_SmartPtr.h
index f8305c0afd9..55bae151027 100644
--- a/intern/memutil/MEM_SmartPtr.h
+++ b/intern/memutil/MEM_SmartPtr.h
@@ -28,19 +28,19 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+/**
+ * @file MEM_SmartPtr.h
+ * Declaration of MEM_RefCounted and MEM_RefCountable classes.
+ * @author Laurence
+ */
#ifndef NAN_INCLUDED_MEM_SmartPtr_h
#define NAN_INCLUDED_MEM_SmartPtr_h
-/**
- * $Id$
- * Copyright (C) 2001 NaN Technologies B.V.
- *
- * @author Laurence
- */
#include <stdlib.h> // for NULL !
+
/**
* @section MEM_SmartPtr
* This class defines a smart pointer similar to that defined in
@@ -86,7 +86,7 @@
* MEM_SmartPtr<foo> m_foo;
* }
*
- * You my also safely construct vectors of MEM_SmartPtrs and
+ * You may also safely construct vectors of MEM_SmartPtrs and
* have the vector own stuff you put into it.
*
* e.g.