diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 09:52:27 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-28 09:52:27 +0200 |
commit | 7d70621941ef6e4faf107061e4a4b12f2690a034 (patch) | |
tree | bf07a2247b38ad0a55e4eb566ba5e8b205780437 | |
parent | 6f70eeec9401f385c8122445eedb53602a002830 (diff) |
Forward-declare result class template
-rw-r--r-- | odb/forward.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/odb/forward.hxx b/odb/forward.hxx index c387fb4..d51240a 100644 --- a/odb/forward.hxx +++ b/odb/forward.hxx @@ -16,11 +16,15 @@ namespace odb class transaction; class session; + template <typename T> + class result; + namespace core { using odb::database; using odb::transaction; using odb::session; + using odb::result; } // Implementation details. |