exiv2/src/rw2image_int.cpp
Luis Díaz Más b17828b454
Use SPDX for licenses (#2122)
* 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
2022-03-04 11:44:39 +01:00

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