mirror of
https://github.com/SOCI/soci.git
synced 2026-02-15 02:38:42 -06:00
First set of changes incorporating new structure of source tree. It also applies some of changes planned as part of buried headers feature #25 Work in progress, requires testing before merging into develop branch
17 lines
513 B
Ada
17 lines
513 B
Ada
-- Copyright (C) 2008-2011 Maciej Sobczak
|
|
-- Distributed under the Boost Software License, Version 1.0.
|
|
-- (See accompanying file LICENSE_1_0.txt or copy at
|
|
-- http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
package SOCI.PostgreSQL is
|
|
|
|
--
|
|
-- Registers the PostgreSQL backend so that it is ready for use
|
|
-- by the dynamic backend loader.
|
|
--
|
|
procedure Register_Factory_PostgreSQL;
|
|
pragma Import (C, Register_Factory_PostgreSQL,
|
|
"register_factory_postgresql");
|
|
|
|
end SOCI.PostgreSQL;
|