Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2011 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
Gigg, Martyn Anthony
committed
#ifndef MANTID_KERNEL_EMPTYVALUES_H_
#define MANTID_KERNEL_EMPTYVALUES_H_
Gigg, Martyn Anthony
committed
This file contains functions to define empty values, i.e EMPTY_INT();
Gigg, Martyn Anthony
committed
@author Martyn Gigg, Tessella plc
*/
#include "MantidKernel/DllConfig.h"
Gigg, Martyn Anthony
committed
Gigg, Martyn Anthony
committed
/// Returns what we consider an "empty" integer
DLLExport int EMPTY_INT();
/// Returns what we consider an "empty" long
DLLExport long EMPTY_LONG();
Gigg, Martyn Anthony
committed
/// Returns what we consider an "empty" int64_t
DLLExport int64_t EMPTY_INT64();
/// Return what we consider to be an empty double
DLLExport double EMPTY_DBL();
Gigg, Martyn Anthony
committed
#endif // MANTID_KERNEL_EMPTYVALUES_H_