aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/result.hxx')
-rw-r--r--odb/sqlite/result.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/odb/sqlite/result.hxx b/odb/sqlite/result.hxx
deleted file mode 100644
index 6e915d4..0000000
--- a/odb/sqlite/result.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-// file : odb/sqlite/result.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_SQLITE_RESULT_HXX
-#define ODB_SQLITE_RESULT_HXX
-
-#include <odb/pre.hxx>
-
-#include <odb/details/shared-ptr.hxx>
-
-#include <odb/sqlite/version.hxx>
-#include <odb/sqlite/forward.hxx> // query_base, query_params
-#include <odb/sqlite/statement.hxx>
-
-#include <odb/sqlite/details/export.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- class LIBODB_SQLITE_EXPORT result_impl_base
- {
- public:
- result_impl_base (const query_base&,
- const details::shared_ptr<select_statement>&);
-
- protected:
- // We need to hold on to the query parameters because SQLite uses
- // the parameter buffers to find each next row.
- //
- details::shared_ptr<query_params> params_;
- details::shared_ptr<select_statement> statement_;
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_SQLITE_RESULT_HXX