From 8a2e0891ad5b971bdcf594a34373ad342ee58706 Mon Sep 17 00:00:00 2001 From: Daniel Richman Date: Tue, 4 Sep 2012 01:25:23 +0100 Subject: [PATCH] Use other include type --- src/CouchDB.h | 2 +- src/Extractor.h | 2 +- src/UKHASExtractor.cxx | 2 +- src/Uploader.h | 2 +- src/UploaderThread.h | 2 +- tests/test_extractor_main.cxx | 2 +- tests/test_extractor_mocks.h | 2 +- tests/test_rfc3339_main.cxx | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/CouchDB.h b/src/CouchDB.h index b45f15c..c1ba052 100644 --- a/src/CouchDB.h +++ b/src/CouchDB.h @@ -3,12 +3,12 @@ #ifndef HABITAT_COUCHDB_H #define HABITAT_COUCHDB_H -#include #include #include #include #include #include +#include "jsoncpp.h" #include "EZ.h" diff --git a/src/Extractor.h b/src/Extractor.h index 23ba7f2..bbc9a4a 100644 --- a/src/Extractor.h +++ b/src/Extractor.h @@ -4,7 +4,7 @@ #define HABITAT_EXTRACTOR_H #include -#include +#include "jsoncpp.h" #include "UploaderThread.h" #include "EZ.h" diff --git a/src/UKHASExtractor.cxx b/src/UKHASExtractor.cxx index 011807a..c2126af 100644 --- a/src/UKHASExtractor.cxx +++ b/src/UKHASExtractor.cxx @@ -1,13 +1,13 @@ /* Copyright 2011 (C) Daniel Richman. License: GNU GPL 3; see COPYING. */ #include "UKHASExtractor.h" -#include #include #include #include #include #include #include +#include "jsoncpp.h" using namespace std; diff --git a/src/Uploader.h b/src/Uploader.h index 0ef0c01..1e055fb 100644 --- a/src/Uploader.h +++ b/src/Uploader.h @@ -7,7 +7,7 @@ #include #include #include -#include +#include "jsoncpp.h" #include "EZ.h" #include "CouchDB.h" diff --git a/src/UploaderThread.h b/src/UploaderThread.h index c11513f..847607f 100644 --- a/src/UploaderThread.h +++ b/src/UploaderThread.h @@ -6,7 +6,7 @@ #include "EZ.h" #include "Uploader.h" #include -#include +#include "jsoncpp.h" using namespace std; diff --git a/tests/test_extractor_main.cxx b/tests/test_extractor_main.cxx index acd63e1..ba06a65 100644 --- a/tests/test_extractor_main.cxx +++ b/tests/test_extractor_main.cxx @@ -2,9 +2,9 @@ #include #include -#include #include +#include "jsoncpp.h" #include "Extractor.h" #include "UKHASExtractor.h" diff --git a/tests/test_extractor_mocks.h b/tests/test_extractor_mocks.h index 906a3a1..6441de1 100644 --- a/tests/test_extractor_mocks.h +++ b/tests/test_extractor_mocks.h @@ -38,7 +38,7 @@ public: #include #include #include -#include +#include "jsoncpp.h" namespace habitat { diff --git a/tests/test_rfc3339_main.cxx b/tests/test_rfc3339_main.cxx index 18a8ab0..002d782 100644 --- a/tests/test_rfc3339_main.cxx +++ b/tests/test_rfc3339_main.cxx @@ -2,9 +2,9 @@ #include #include -#include #include +#include "jsoncpp.h" #include "RFC3339.h" using namespace std;