Cleaned-up a few includes

This commit is contained in:
Andreas Huggel 2006-01-27 14:36:08 +00:00
parent c35eaa48c4
commit e1a895636b
4 changed files with 6 additions and 5 deletions

View File

@ -35,7 +35,6 @@
// + standard includes
#include <string>
#include <vector>
#include <cstdio>
// *****************************************************************************

View File

@ -40,7 +40,7 @@
#include "iptc.hpp"
// + standard includes
#include <iostream>
#include <iosfwd>
#include <string>
#include <vector>
#include <stack>

View File

@ -41,7 +41,7 @@
// + standard includes
#include <string>
#include <map>
#include <vector>
// *****************************************************************************
// namespace extensions

View File

@ -44,11 +44,9 @@
#include <iosfwd>
#include <utility>
#include <sstream>
#include <cstdio>
#ifdef EXV_HAVE_STDINT_H
# include <stdint.h>
#endif
#include <ctime>
// MSVC doesn't provide C99 types, but it has MS specific variants
#ifdef _MSC_VER
@ -59,6 +57,10 @@ typedef __int16 int16_t;
typedef __int32 int32_t;
#endif
// *****************************************************************************
// forward declarations
struct tm;
// *****************************************************************************
// namespace extensions
namespace Exiv2 {