![]() |
TerraLib 4.1
|
00001 /************************************************************************************ 00002 TerraLib - a library for developing GIS applications. 00003 Copyright 2001-2007 INPE and Tecgraf/PUC-Rio. 00004 00005 This code is part of the TerraLib library. 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 You should have received a copy of the GNU Lesser General Public 00012 License along with this library. 00013 00014 The authors reassure the license terms regarding the warranties. 00015 They specifically disclaim any warranties, including, but not limited to, 00016 the implied warranties of merchantability and fitness for a particular purpose. 00017 The library provided hereunder is on an "as is" basis, and the authors have no 00018 obligation to provide maintenance, support, updates, enhancements, or modifications. 00019 In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct, 00020 indirect, special, incidental, or consequential damages arising out of the use 00021 of this library and its documentation. 00022 *************************************************************************************/ 00023 00030 #ifndef __TERRALIB_INTERNAL_POSTGRESQL_CONNECTION_H 00031 #define __TERRALIB_INTERNAL_POSTGRESQL_CONNECTION_H 00032 00033 // TerraLib 00034 #include "../../kernel/TeConnection.h" 00035 #include "TePostgreSQLDefines.h" 00036 00037 // STL 00038 #include <string> 00039 00040 // forward declarations 00041 class TePGConnection; 00042 00043 class TLPOSTGRESQL_DLL TePostgreSQLConnection : public TeConnection 00044 { 00045 00046 public: 00047 00052 00054 TePostgreSQLConnection(); 00055 00057 ~TePostgreSQLConnection(); 00058 00060 00065 00066 void setPGConnection(TePGConnection* conn); 00067 TePGConnection* getPGConnection() const; 00068 00070 00071 private: 00072 00073 TePGConnection* pgConnection_; 00074 }; 00075 00076 #endif // __TERRALIB_INTERNAL_POSTGRESQL_CONNECTION_H 00077