comparison DBCache.hpp @ 40:f711ddb56ae7

Sort up includes.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 13:32:33 +0200
parents 2b83559b78db
children 7b7e84356b39
comparison
equal deleted inserted replaced
39:f23fa42238dc 40:f711ddb56ae7
1 #ifndef DBCACHE_HPP 1 #ifndef DBCACHE_HPP
2 #define DBCACHE_HPP 2 #define DBCACHE_HPP
3 3
4 #include <QtSql/QSqlDatabase> 4 #include "OrderedPair.hpp"
5 #include <QtSql/QSqlQuery> 5 #include "ThreadSafeLookup.hpp"
6 #include <QtSql/QSqlError> 6 #include "UniqueString.hpp"
7 #include <QtSql/QSqlRecord> 7
8 8 #include "Exception/IOException.hpp"
9 #include "Exception/SQLException.hpp"
9 10
10 #include <QtCore/QStringList> 11 #include <QtCore/QStringList>
11 #include <QtCore/QVariant> 12 #include <QtCore/QVariant>
12 #include "OrderedPair.hpp" 13
14 #include <QtSql/QSqlDatabase>
15 #include <QtSql/QSqlError>
16 #include <QtSql/QSqlQuery>
17 #include <QtSql/QSqlRecord>
13 18
14 #include <boost/optional.hpp> 19 #include <boost/optional.hpp>
15
16 #include "ThreadSafeLookup.hpp"
17 #include "UniqueString.hpp"
18 #include "Exception/SQLException.hpp"
19 #include "Exception/IOException.hpp"
20 20
21 template<typename T> 21 template<typename T>
22 struct SQLGenerator 22 struct SQLGenerator
23 { 23 {
24 }; 24 };