mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
273c67d8aa
As discussed on the list. If no C++11 compiler is found configuration stops with an error. There are now unneeded parts of boost, the will be removed in a second commit.
27 lines
433 B
C++
27 lines
433 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file bind.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Peter Kümmel
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYX_BIND_H
|
|
#define LYX_BIND_H
|
|
|
|
#include "support/functional.h"
|
|
|
|
namespace lyx
|
|
{
|
|
using std::placeholders::_1;
|
|
using std::placeholders::_2;
|
|
using std::bind;
|
|
using std::ref;
|
|
}
|
|
|
|
|
|
#endif
|