aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-03-19 13:34:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-03-19 13:34:28 +0200
commit85fdb97e33b65a5425a30efa4193b6686a5a252a (patch)
treeb681b2b5fbbedfcf637b774275e1a2d2bec39e11 /odb/sqlite
parenta21c3389fef8434eedcad1645ddc28869d10e981 (diff)
Export pooled_connection class
It can be used by derived connection factories.
Diffstat (limited to 'odb/sqlite')
-rw-r--r--odb/sqlite/connection-factory.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/sqlite/connection-factory.hxx b/odb/sqlite/connection-factory.hxx
index 0db2cf1..7994785 100644
--- a/odb/sqlite/connection-factory.hxx
+++ b/odb/sqlite/connection-factory.hxx
@@ -62,7 +62,7 @@ namespace odb
single_connection_factory& operator= (const single_connection_factory&);
protected:
- class single_connection: public connection
+ class LIBODB_SQLITE_EXPORT single_connection: public connection
{
public:
single_connection (database_type&, int extra_flags = 0);
@@ -178,7 +178,7 @@ namespace odb
connection_pool_factory& operator= (const connection_pool_factory&);
protected:
- class pooled_connection: public connection
+ class LIBODB_SQLITE_EXPORT pooled_connection: public connection
{
public:
pooled_connection (database_type&, int extra_flags = 0);