]> git.lyx.org Git - lyx.git/blob - src/support/functional.h
Account for old versions of Pygments
[lyx.git] / src / support / functional.h
1 // -*- C++ -*-
2 /**
3  * \file functional.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_FUNCTIONAL_H
13 #define LYX_FUNCTIONAL_H
14
15 #include <functional>
16
17 namespace lyx
18 {
19         using std::function;
20 }
21
22
23 #endif