Newer
Older
Gigg, Martyn Anthony
committed
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
Gigg, Martyn Anthony
committed
#include <climits>
#include <cfloat>
namespace Mantid
{
/**
* Returns what we consider an "empty" integer within a property
* @returns An flag value
*/
int EMPTY_INT()
{
return INT_MAX;
}
/**
* Returns what we consider an "empty" long within a property
* @returns An flag value
*/
long EMPTY_LONG()
{
return LONG_MAX;
}
Gigg, Martyn Anthony
committed
/**
* Returns what we consider an "empty" double within a property
* @returns An flag value
*/
double EMPTY_DBL()
{
Gigg, Martyn Anthony
committed
}
} // namespace Mantid