You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
C++
22 lines
393 B
C++
8 years ago
|
#include "rw2image_int.hpp"
|
||
|
|
||
|
namespace Exiv2 {
|
||
|
namespace Internal {
|
||
|
|
||
|
Rw2Header::Rw2Header()
|
||
|
: TiffHeaderBase(0x0055, 24, littleEndian, 0x00000018)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Rw2Header::~Rw2Header()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
DataBuf Rw2Header::write() const
|
||
|
{
|
||
|
// Todo: Implement me!
|
||
|
return DataBuf();
|
||
|
}
|
||
|
|
||
|
}} // namespace Internal, Exiv2
|