src/Connection.h
branchv_0
changeset 28 498d5d3406c3
parent 27 9441a517fa1f
child 29 b0ef1e1dc9c8
--- a/src/Connection.h	Wed Dec 25 01:07:41 2019 +0100
+++ b/src/Connection.h	Wed Dec 25 01:26:02 2019 +0100
@@ -16,27 +16,8 @@
  */
 #pragma once
 
-#include <memory>
-#include <string>
-#include <sstream>
-#include <regex>
-#include <vector>
-#include <locale>
-#include <codecvt>
-#include <unistd.h>
-#include <cassert>
-#include <sys/stat.h>
-
 #include <sqlite3.h>
 
-#include <relpipe/reader/typedefs.h>
-#include <relpipe/reader/TypeId.h>
-#include <relpipe/reader/handlers/RelationalReaderValueHandler.h>
-#include <relpipe/reader/handlers/AttributeMetadata.h>
-
-#include <relpipe/writer/Factory.h>
-
-#include "Configuration.h"
 #include "SqlException.h"
 #include "PreparedStatement.h"
 
@@ -44,11 +25,6 @@
 namespace tr {
 namespace sql {
 
-using namespace std;
-using namespace relpipe;
-using namespace relpipe::reader;
-using namespace relpipe::reader::handlers;
-
 class Connection {
 private:
 	sqlite3* db;