Files
soci/languages/ada/soci-postgresql.ads
Mateusz Loskot b6d97ffa6f Implement new source tree layout #125
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
2013-05-29 21:57:23 +01:00

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;