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

source code of include/OpenEXR/ImfIntAttribute.h