]> git.lyx.org Git - lyx.git/blob - src/support/bind.h
Remove updateInfo() calls in favor of doing the relevant work
[lyx.git] / src / support / bind.h
1 // -*- C++ -*-
2 /**
3  * \file bind.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Peter Kümmel
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_BIND_H
13 #define LYX_BIND_H
14
15 #include "support/functional.h"
16
17 namespace lyx
18 {
19         using std::placeholders::_1;
20         using std::placeholders::_2;
21         using std::bind;
22         using std::ref;
23 } // namespace
24
25
26 #endif