1//
2// SPDX-License-Identifier: BSD-3-Clause
3// Copyright (c) Contributors to the OpenEXR Project.
4//
5
6
7#ifndef INCLUDED_IMF_STRING_ATTRIBUTE_H
8#define INCLUDED_IMF_STRING_ATTRIBUTE_H
9
10//-----------------------------------------------------------------------------
11//
12// class StringAttribute
13//
14//-----------------------------------------------------------------------------
15
16#include "ImfExport.h"
17#include "ImfNamespace.h"
18
19#include "ImfAttribute.h"
20
21#include <string>
22
23OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
24
25
26typedef TypedAttribute<std::string> StringAttribute;
27
28#ifndef COMPILING_IMF_STRING_ATTRIBUTE
29extern template class IMF_EXPORT_EXTERN_TEMPLATE TypedAttribute<std::string>;
30#endif
31
32
33OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
34
35#endif
36

source code of include/OpenEXR/ImfStringAttribute.h