generate-exceptions,include/xapian/: Remove XAPIAN_PURE_FUNCTION
[xapian.git] / xapian-core / include / xapian / derefwrapper.h
blob77d9b3717ab2edacb7e9985c83ee84c8a33ede01
1 /** @file derefwrapper.h
2 * @brief Class for wrapping type returned by an input_iterator.
3 */
4 /* Copyright (C) 2004,2008,2009,2013,2014 Olly Betts
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
19 * USA
22 #ifndef XAPIAN_INCLUDED_DEREFWRAPPER_H
23 #define XAPIAN_INCLUDED_DEREFWRAPPER_H
25 #if !defined XAPIAN_IN_XAPIAN_H && !defined XAPIAN_LIB_BUILD
26 # error "Never use <xapian/derefwraper.h> directly; include <xapian.h> instead."
27 #endif
29 namespace Xapian {
31 /** @private @internal Class which returns a value when dereferenced with
32 * operator*.
34 * We need this wrapper class to implement input_iterator semantics for the
35 * postfix operator++ methods of some of our iterator classes.
37 template<typename T>
38 class DerefWrapper_ {
39 /// Don't allow assignment.
40 void operator=(const DerefWrapper_ &);
42 /// The value.
43 T res;
45 public:
46 explicit DerefWrapper_(const T &res_) : res(res_) { }
47 const T & operator*() const { return res; }
52 #endif // XAPIAN_INCLUDED_DEREFWRAPPER_H