3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/triqs/utility/macros.hpp
Olivier Parcollet 2c542647fd clef : new version using lvalues and moving rvalues
- change : all objects are by default
  stored now by reference, not by copy any more.
  Unless the trait force_copy_in_expr is true.
- rvalue refs are moved into the tree
- simplifies a lot the writing of lazy method, objects.
- added a macro for methods
- tests ok. Further check needed to control absence of copies...
- improved documentation
2013-09-08 15:04:12 +02:00

45 lines
1.9 KiB
C++

/*******************************************************************************
*
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
*
* Copyright (C) 2011 by O. Parcollet
*
* TRIQS is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* TRIQS. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
#ifndef TRIQS_UTILITY_MACROS_H
#define TRIQS_UTILITY_MACROS_H
#include <triqs/utility/first_include.hpp>
#include <boost/utility/enable_if.hpp>
#define TYPE_ENABLE_IF(Type,...) typename boost::enable_if < __VA_ARGS__ , Type >::type
#define TYPE_ENABLE_IFC(Type,...) typename boost::enable_if_c < __VA_ARGS__ , Type >::type
#define TYPE_DISABLE_IF(Type,...) typename boost::disable_if< __VA_ARGS__ , Type >::type
#define TYPE_DISABLE_IFC(Type,...) typename boost::disable_if_c< __VA_ARGS__ , Type >::type
#define ENABLE_IF(...) typename boost::enable_if < __VA_ARGS__ , void >::type
#define ENABLE_IFC(...) typename boost::enable_if_c < __VA_ARGS__ , void >::type
#define DISABLE_IF(...) typename boost::disable_if< __VA_ARGS__ , void >::type
#define DISABLE_IFC(...) typename boost::disable_if_c< __VA_ARGS__ , void >::type
#define DECL_AND_RETURN(...) -> decltype(__VA_ARGS__) { return __VA_ARGS__;}
namespace triqs {
template<typename T> struct remove_cv_ref : std::remove_cv< typename std::remove_reference<T>::type> {};
};
#endif