ImfFloatAttribute.h 714 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // Copyright (c) Contributors to the OpenEXR Project.
  4. //
  5. #ifndef INCLUDED_IMF_FLOAT_ATTRIBUTE_H
  6. #define INCLUDED_IMF_FLOAT_ATTRIBUTE_H
  7. //-----------------------------------------------------------------------------
  8. //
  9. // class FloatAttribute
  10. //
  11. //-----------------------------------------------------------------------------
  12. #include "ImfExport.h"
  13. #include "ImfNamespace.h"
  14. #include "ImfAttribute.h"
  15. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
  16. typedef TypedAttribute<float> FloatAttribute;
  17. #ifndef COMPILING_IMF_FLOAT_ATTRIBUTE
  18. extern template class IMF_EXPORT_EXTERN_TEMPLATE TypedAttribute<float>;
  19. #endif
  20. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
  21. #endif