aboutsummaryrefslogtreecommitdiff
path: root/common/session/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-01-08 10:37:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-01-16 07:42:56 +0200
commit9bd664e4cb39f6654e8754c8cfd4c28295ee2d90 (patch)
treed6acbf21942d17ede725407c4368286efacf822a /common/session/test.hxx
parent6edf3badfc8c81ebfb45439408b2b1bf8c9136dd (diff)
Rename common/session to common/session/cache
Diffstat (limited to 'common/session/test.hxx')
-rw-r--r--common/session/test.hxx66
1 files changed, 0 insertions, 66 deletions
diff --git a/common/session/test.hxx b/common/session/test.hxx
deleted file mode 100644
index abc4628..0000000
--- a/common/session/test.hxx
+++ /dev/null
@@ -1,66 +0,0 @@
-// file : common/session/test.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef TEST_HXX
-#define TEST_HXX
-
-#include <common/config.hxx> // HAVE_CXX11, HAVE_TR1_MEMORY
-
-#include <memory>
-#include <vector>
-
-#include <odb/core.hxx>
-
-#if !defined(HAVE_CXX11) && defined(HAVE_TR1_MEMORY)
-# include <odb/tr1/memory.hxx>
-#endif
-
-// Test the session_required exception.
-//
-#if defined(HAVE_CXX11) || defined(HAVE_TR1_MEMORY)
-
-#pragma db namespace table("t1_")
-namespace test1
-{
-#ifdef HAVE_CXX11
- using std::shared_ptr;
- using std::weak_ptr;
-#else
- using std::tr1::shared_ptr;
- using std::tr1::weak_ptr;
-#endif
-
- #pragma db namespace(test1) pointer(shared_ptr)
-
- struct obj2;
-
- #pragma db object
- struct obj1
- {
- obj1 () {}
- obj1 (unsigned long id): id_ (id) {}
-
- #pragma db id
- unsigned long id_;
-
- shared_ptr<obj2> o2;
- };
-
- #pragma db object
- struct obj2
- {
- obj2 () {}
- obj2 (unsigned long id): id_ (id) {}
-
- #pragma db id
- unsigned long id_;
-
- #pragma db inverse (o2)
- std::vector< weak_ptr<obj1> > o1;
- };
-}
-
-#endif // HAVE_CXX11 || HAVE_TR1_MEMORY
-
-#endif // TEST_HXX