57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
/*****************************************************************************
|
|
|
|
fnc.h
|
|
Author: Laurent de Soras, 2005
|
|
|
|
--- Legal stuff ---
|
|
|
|
This program is free software. It comes without any warranty, to
|
|
the extent permitted by applicable law. You can redistribute it
|
|
and/or modify it under the terms of the Do What The Fuck You Want
|
|
To Public License, Version 2, as published by Sam Hocevar. See
|
|
http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
*Tab=3***********************************************************************/
|
|
|
|
|
|
|
|
#if ! defined (hiir_fnc_HEADER_INCLUDED)
|
|
#define hiir_fnc_HEADER_INCLUDED
|
|
|
|
#if defined (_MSC_VER)
|
|
#pragma once
|
|
#pragma warning (4 : 4250) // "Inherits via dominance."
|
|
#endif
|
|
|
|
|
|
|
|
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
|
|
|
|
|
|
|
|
namespace hiir
|
|
{
|
|
|
|
|
|
|
|
inline int round_int (double x);
|
|
inline int ceil_int (double x);
|
|
|
|
template <class T>
|
|
T ipowp (T x, long n);
|
|
|
|
|
|
|
|
} // namespace hiir
|
|
|
|
|
|
|
|
#include "hiir/fnc.hpp"
|
|
|
|
|
|
|
|
#endif // hiir_fnc_HEADER_INCLUDED
|
|
|
|
|
|
|
|
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
|