From 806df44f9182ebd1cb86bc31189370a3e595d3b9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 13 Jan 2012 12:07:50 +0200 Subject: Boost profile implementation for SQL Server --- boost/mssql/template/test.hxx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 boost/mssql/template/test.hxx (limited to 'boost/mssql/template/test.hxx') diff --git a/boost/mssql/template/test.hxx b/boost/mssql/template/test.hxx new file mode 100644 index 0000000..ab41549 --- /dev/null +++ b/boost/mssql/template/test.hxx @@ -0,0 +1,27 @@ +// file : boost/mssql/template/test.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include + +#pragma db object +struct object +{ + object (unsigned long id) + : id_ (id) + { + } + + object () + { + } + + #pragma db id + unsigned long id_; +}; + +#endif // TEST_HXX -- cgit v1.1