ImfStringVectorAttribute.h 934 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // Copyright (c) Weta Digital, Ltd and Contributors to the OpenEXR Project.
  4. //
  5. #ifndef INCLUDED_IMF_STRINGVECTOR_ATTRIBUTE_H
  6. #define INCLUDED_IMF_STRINGVECTOR_ATTRIBUTE_H
  7. //-----------------------------------------------------------------------------
  8. //
  9. // class StringVectorAttribute
  10. //
  11. //-----------------------------------------------------------------------------
  12. #include "ImfExport.h"
  13. #include "ImfNamespace.h"
  14. #include "ImfAttribute.h"
  15. #include <string>
  16. #include <vector>
  17. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
  18. typedef std::vector<std::string> StringVector;
  19. typedef TypedAttribute<OPENEXR_IMF_INTERNAL_NAMESPACE::StringVector> StringVectorAttribute;
  20. #ifndef COMPILING_IMF_STRING_VECTOR_ATTRIBUTE
  21. extern template class IMF_EXPORT_EXTERN_TEMPLATE TypedAttribute<OPENEXR_IMF_INTERNAL_NAMESPACE::StringVector>;
  22. #endif
  23. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
  24. #endif