2010-04-22 11:16:58 +00:00
|
|
|
// -*- 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
|
|
|
|
|
2010-10-23 10:49:45 +00:00
|
|
|
#include "support/functional.h"
|
2010-04-22 15:56:20 +00:00
|
|
|
|
2014-12-21 19:19:12 +00:00
|
|
|
namespace lyx
|
|
|
|
{
|
|
|
|
using std::placeholders::_1;
|
|
|
|
using std::placeholders::_2;
|
2016-06-07 18:33:06 +00:00
|
|
|
using std::bind;
|
|
|
|
using std::ref;
|
2010-04-22 15:56:20 +00:00
|
|
|
}
|
2010-04-22 11:16:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|