summaryrefslogtreecommitdiff
authoralwin <alwin>2004-03-18 14:57:30 (UTC)
committer alwin <alwin>2004-03-18 14:57:30 (UTC)
commit69fa0e7b5cab5f4cdfdac736e31ff0fd0fbf4312 (patch) (unidiff)
tree5c4f9fd57e86d545cb86e8fcc2cc655503493a8d
parentaf43e0901f6622c26896422402a2674ac0df2f7d (diff)
downloadopie-69fa0e7b5cab5f4cdfdac736e31ff0fd0fbf4312.zip
opie-69fa0e7b5cab5f4cdfdac736e31ff0fd0fbf4312.tar.gz
opie-69fa0e7b5cab5f4cdfdac736e31ff0fd0fbf4312.tar.bz2
stddefs.h included for definition of NULL
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/osmartpointer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opiecore/osmartpointer.h b/libopie2/opiecore/osmartpointer.h
index 8f9da7f..c7dc9d9 100644
--- a/libopie2/opiecore/osmartpointer.h
+++ b/libopie2/opiecore/osmartpointer.h
@@ -23,24 +23,26 @@ _;:, .> :=|. This program is free software; you can
23: = ...= . :.=- 23: = ...= . :.=-
24-. .:....=;==+<; You should have received a copy of the GNU 24-. .:....=;==+<; You should have received a copy of the GNU
25 -_. . . )=. = Library General Public License along with 25 -_. . . )=. = Library General Public License along with
26 -- :-=` this library; see the file COPYING.LIB. 26 -- :-=` this library; see the file COPYING.LIB.
27 If not, write to the Free Software Foundation, 27 If not, write to the Free Software Foundation,
28 Inc., 59 Temple Place - Suite 330, 28 Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. 29 Boston, MA 02111-1307, USA.
30*/ 30*/
31 31
32#ifndef _OSmartPointer_h 32#ifndef _OSmartPointer_h
33#define _OSmartPointer_h 33#define _OSmartPointer_h
34 34
35#include <stddef.h>
36
35/*! 37/*!
36 * \file OSmartPointer.h 38 * \file OSmartPointer.h
37 * \brief smart pointer and reference counter 39 * \brief smart pointer and reference counter
38 * \author Rajko Albrecht 40 * \author Rajko Albrecht
39 * 41 *
40 */ 42 */
41 43
42namespace Opie { 44namespace Opie {
43namespace Core { 45namespace Core {
44 46
45//! simple reference counter class 47//! simple reference counter class
46class ORefCount { 48class ORefCount {