Mantid
Loading...
Searching...
No Matches
TableColumn.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
9#include "MantidKernel/V3D.h"
10
11namespace Mantid::DataObjects {
12
13DECLARE_TABLECOLUMN(int, int)
14DECLARE_TABLECOLUMN(uint32_t, uint)
15DECLARE_TABLECOLUMN(int64_t, long64)
16DECLARE_TABLECOLUMN(size_t, size_t)
17DECLARE_TABLECOLUMN(float, float)
18DECLARE_TABLECOLUMN(double, double)
19DECLARE_TABLECOLUMN(API::Boolean, bool)
20DECLARE_TABLECOLUMN(std::string, str)
22
23} // namespace Mantid::DataObjects
#define DECLARE_TABLECOLUMN(DataType, TypeName)
Definition: TableColumn.h:525
Class for 3D vectors.
Definition: V3D.h:34