diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-07-11 22:12:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-07-11 22:12:43 +0000 |
commit | 4051bce27dea570b452e7181591319be45d9c917 (patch) | |
tree | e6ea721a3ebbcea3e531397cdf41f12a8e91976f /src/interfaces/libpq++/pgdatabase.h | |
parent | d674b48307d97712a8d5bb49226d8397a778aac5 (diff) |
Libpq++ fixes for Win32 compile.
Christian Ullrich
Diffstat (limited to 'src/interfaces/libpq++/pgdatabase.h')
-rw-r--r-- | src/interfaces/libpq++/pgdatabase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq++/pgdatabase.h b/src/interfaces/libpq++/pgdatabase.h index 2c502bd7847..5b2b8f40b73 100644 --- a/src/interfaces/libpq++/pgdatabase.h +++ b/src/interfaces/libpq++/pgdatabase.h @@ -14,7 +14,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $Id: pgdatabase.h,v 1.11 2001/05/09 17:46:11 momjian Exp $ + * $Id: pgdatabase.h,v 1.12 2001/07/11 22:12:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -34,7 +34,7 @@ // This is the basic database access class. Its interface should // be used only after a query has been sent to the backend and // results are being received. -class PgDatabase : public PgConnection { +class DLLIMPORT PgDatabase : public PgConnection { public: // connect to the database with conninfo explicit PgDatabase(const char* conninfo) : PgConnection(conninfo) {} |