* Use SPDX identifier in header files * Use SPDX identifier in rest of source files * Fix usage of SPDX for files with 2 licenses * Add global license file * Fix compilation
21 lines
380 B
C++
21 lines
380 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "rw2image_int.hpp"
|
|
|
|
namespace Exiv2 {
|
|
namespace Internal {
|
|
|
|
Rw2Header::Rw2Header()
|
|
: TiffHeaderBase(0x0055, 24, littleEndian, 0x00000018)
|
|
{
|
|
}
|
|
|
|
DataBuf Rw2Header::write() const
|
|
{
|
|
// Todo: Implement me!
|
|
return DataBuf();
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Exiv2
|