mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
efbd1d30cb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22165 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
888 B
C++
41 lines
888 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file lyxlib.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* A selection of useful system functions made
|
|
* handy for C++ usage.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYX_LIB_H
|
|
#define LYX_LIB_H
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
|
|
/// FIXME: some point to this hmm ?
|
|
int kill(int pid, int sig);
|
|
|
|
/**
|
|
* Returns true if var is approximately equal to number with allowed error
|
|
* of 'error'.
|
|
*
|
|
* Usage: if (float_equal(var, number, 0.0001)) { }
|
|
*
|
|
* This will check if 'var' is approx. equal to 'number' with error of 1/1000
|
|
*/
|
|
inline bool float_equal(double var, double number, double error)
|
|
{
|
|
return (number - error <= var && var <= number + error);
|
|
}
|
|
|
|
} // namespace support
|
|
} // namespace lyx
|
|
|
|
#endif /* LYX_LIB_H */
|