xapian-core  2.0.0
derefwrapper.h
Go to the documentation of this file.
1 
4 /* Copyright (C) 2004,2008,2009,2013,2014 Olly Betts
5  *
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.
10  *
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.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see
18  * <https://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef XAPIAN_INCLUDED_DEREFWRAPPER_H
22 #define XAPIAN_INCLUDED_DEREFWRAPPER_H
23 
24 #if !defined XAPIAN_IN_XAPIAN_H && !defined XAPIAN_LIB_BUILD
25 # error Never use <xapian/derefwraper.h> directly; include <xapian.h> instead.
26 #endif
27 
28 namespace Xapian {
29 
36 template<typename T>
39  void operator=(const DerefWrapper_&) = delete;
40 
42  T res;
43 
44  public:
46  DerefWrapper_(const DerefWrapper_&) = default;
47 
48  explicit DerefWrapper_(const T &res_) : res(res_) { }
49  const T & operator*() const { return res; }
50 };
51 
52 }
53 
54 #endif // XAPIAN_INCLUDED_DEREFWRAPPER_H
void operator=(const DerefWrapper_ &)=delete
Don't allow assignment.
DerefWrapper_(const DerefWrapper_ &)=default
Default copy constructor.
DerefWrapper_(const T &res_)
Definition: derefwrapper.h:48
const T & operator*() const
Definition: derefwrapper.h:49
The Xapian namespace contains public interfaces for the Xapian library.
Definition: compactor.cc:82