diff --git a/Utilities/ExivCompat.h b/Utilities/ExivCompat.h index 175a3758..a767b415 100644 --- a/Utilities/ExivCompat.h +++ b/Utilities/ExivCompat.h @@ -1,43 +1,43 @@ /* Copyright (C) 2018-2019 Johannes Zarl-Zierl This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef EXIV_COMPAT_H #define EXIV_COMPAT_H -#include #include +#include /** * \namespace ExivCompat * Compatibility layer for migration from Exiv2 0.26 to 0.27. * * Beginning with version 0.27, Exiv2 introduced some incompatible API * changes to make transitioning the API to modern (post C++11) C++. * This namespace wraps these incompatible changes. */ namespace ExivCompat { #if (EXIV2_TEST_VERSION(0,27,0)) using UniquePtr = Exiv2::Image::UniquePtr; #else using UniquePtr = Exiv2::Image::AutoPtr; #endif } #endif /* EXIV_COMPAT_H */ // vi:expandtab:tabstop=4 shiftwidth=4: