1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
/**
* @class vtkVariantCreate
*
* Performs an explicit conversion from an arbitrary type to a vtkVariant. Provides
* callers with a "hook" for defining conversions from user-defined types to vtkVariant.
*
* @par Thanks:
* Developed by Timothy M. Shead (tshead@sandia.gov) at Sandia National Laboratories.
*/
#ifndef vtkVariantCreate_h
#define vtkVariantCreate_h
#include "vtkVariant.h"
#include <typeinfo> // for warnings
VTK_ABI_NAMESPACE_BEGIN
template <typename T>
vtkVariant vtkVariantCreate(const T&)
{
vtkGenericWarningMacro(
<< "Cannot convert unsupported type [" << typeid(T).name() << "] to vtkVariant. "
<< "Create a vtkVariantCreate<> specialization to eliminate this warning.");
return vtkVariant();
}
template <>
inline vtkVariant vtkVariantCreate<char>(const char& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<unsigned char>(const unsigned char& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<short>(const short& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<unsigned short>(const unsigned short& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<int>(const int& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<unsigned int>(const unsigned int& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<long>(const long& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<unsigned long>(const unsigned long& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<long long>(const long long& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<unsigned long long>(const unsigned long long& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<float>(const float& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<double>(const double& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<vtkStdString>(const vtkStdString& value)
{
return value;
}
template <>
inline vtkVariant vtkVariantCreate<vtkVariant>(const vtkVariant& value)
{
return value;
}
VTK_ABI_NAMESPACE_END
#endif
// VTK-HeaderTest-Exclude: vtkVariantCreate.h
|