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.
24 lines
368 B
C++
24 lines
368 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file functional.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_FUNCTIONAL_H
|
|
#define LYX_FUNCTIONAL_H
|
|
|
|
#include <functional>
|
|
|
|
namespace lyx
|
|
{
|
|
using std::function;
|
|
}
|
|
|
|
|
|
#endif
|