Skip to content

Commit 61ad136

Browse files
committed
move int headers from hpp to cpp
Signed-off-by: Rosen Penev <[email protected]>
1 parent 8ec1c52 commit 61ad136

7 files changed

+9
-6
lines changed

src/crwimage_int.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "error.hpp"
77
#include "i18n.h" // NLS support.
88
#include "image_int.hpp"
9+
#include "tags_int.hpp"
910

1011
#include <algorithm>
1112
#include <ctime>

src/crwimage_int.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// *****************************************************************************
77
// included header files
88
#include "image.hpp"
9-
#include "tags_int.hpp"
109

1110
// + standard includes
1211
#include <stack>

src/makernote_int.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55

66
// *****************************************************************************
77
// included header files
8-
#include "tags_int.hpp"
8+
#include "tags.hpp"
99
#include "types.hpp"
1010

11+
#include <memory>
12+
1113
// namespace extensions
1214
namespace Exiv2::Internal {
1315
class IoWrapper;

src/sonymn_int.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
// *****************************************************************************
77
// included header files
8-
#include "tiffcomposite_int.hpp"
8+
#include "tifffwd_int.hpp"
99

1010
// *****************************************************************************
1111
// namespace extensions

src/tifffwd_int.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// *****************************************************************************
77
// included header files
88
#include "tags_int.hpp"
9-
#include "types.hpp"
109

1110
// + standard includes
1211
#include <stack>

src/tiffvisitor_int.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#include "photoshop.hpp"
1313
#include "safe_op.hpp"
1414
#include "sonymn_int.hpp"
15+
#include "tiffcomposite_int.hpp"
16+
#include "tiffimage_int.hpp"
1517
#include "value.hpp"
1618

1719
#include <functional>

src/tiffvisitor_int.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
// *****************************************************************************
77
// included header files
88
#include "exif.hpp"
9-
#include "tiffcomposite_int.hpp" // Do not change the order of these 2 includes,
109
#include "tifffwd_int.hpp"
11-
#include "tiffimage_int.hpp"
1210
#include "types.hpp"
1311

1412
#include <array>
@@ -20,6 +18,8 @@ class IptcData;
2018
class XmpData;
2119

2220
namespace Internal {
21+
class TiffDataEntryBase;
22+
class TiffImageEntry;
2323
// *****************************************************************************
2424
// class definitions
2525

0 commit comments

Comments
 (0)