Chemical Data Processing Library C++ API - Version 1.4.0
Dereferencer.hpp
Go to the documentation of this file.
1 /*
2  * Dereferencer.hpp
3  *
4  * This file is part of the Chemical Data Processing Toolkit
5  *
6  * Copyright (C) 2003 Thomas Seidel <thomas.seidel@univie.ac.at>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; see the file COPYING. If not, write to
20  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 
29 #ifndef CDPL_UTIL_DEREFERENCER_HPP
30 #define CDPL_UTIL_DEREFERENCER_HPP
31 
32 #include "CDPL/Base/Exceptions.hpp"
33 
34 
35 namespace CDPL
36 {
37 
38  namespace Util
39  {
40 
50  template <typename ArgType, typename ResType>
51  struct Dereferencer
52  {
53 
54  public:
58  typedef ResType result_type;
59 
65  ResType operator()(const ArgType& ptr) const;
66  };
67 
77  template <typename ArgType, typename ResType>
79  {
80 
81  public:
85  typedef ResType result_type;
86 
93  ResType operator()(const ArgType& ptr) const;
94  };
95  } // namespace Util
96 } // namespace CDPL
97 
98 
99 // Implementation
100 
101 template <typename ArgType, typename ResType>
103 {
104  return *ptr;
105 }
106 
107 template <typename ArgType, typename ResType>
109 {
110  if (!ptr)
111  throw Base::NullPointerException("NullCheckDereferencer: attempt to dereference null pointer");
112 
113  return *ptr;
114 }
115 
116 #endif // CDPL_UTIL_DEREFERENCER_HPP
Definition of exception classes.
Thrown when an operation requires or expects a valid pointer but a null pointer was provided.
Definition: Base/Exceptions.hpp:95
The namespace of the Chemical Data Processing Library.
Unary functor for the dereferenciation of pointers without null pointer checking.
Definition: Dereferencer.hpp:52
ResType operator()(const ArgType &ptr) const
Returns a reference to or copy of the pointed-to argument object.
Definition: Dereferencer.hpp:102
ResType result_type
The functor's result type (for STL adaptors).
Definition: Dereferencer.hpp:58
Unary functor for the dereferenciation of pointers with null pointer checking.
Definition: Dereferencer.hpp:79
ResType result_type
The functor's result type (for STL adaptors).
Definition: Dereferencer.hpp:85
ResType operator()(const ArgType &ptr) const
Returns a reference to or copy of the pointed-to argument object.
Definition: Dereferencer.hpp:108