/usr/include/vtk-6.2/vtkVariantCreate.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkVariantCreate.h
-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkVariantCreate
// .SECTION Description
// 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.
// .SECTION Thanks
// Developed by Timothy M. Shead (tshead@sandia.gov) at Sandia National Laboratories.
#ifndef vtkVariantCreate_h
#define vtkVariantCreate_h
#include <typeinfo> // for warnings
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;
}
#ifdef VTK_TYPE_USE___INT64
template<>
inline vtkVariant vtkVariantCreate<__int64>(const __int64& value)
{
return value;
}
template<>
inline vtkVariant vtkVariantCreate<unsigned __int64>(const unsigned __int64& value)
{
return value;
}
#endif
#ifdef VTK_TYPE_USE_LONG_LONG
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;
}
#endif
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<vtkUnicodeString>(const vtkUnicodeString& value)
{
return value;
}
template<>
inline vtkVariant vtkVariantCreate<vtkVariant>(const vtkVariant& value)
{
return value;
}
#endif
// VTK-HeaderTest-Exclude: vtkVariantCreate.h
|