added notes about new optional sslmode parameter in 1.1

git-svn-id: http://svn.osgeo.org/qgis/trunk@10493 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2009-04-07 08:24:55 +00:00
parent ba33f55827
commit a415b87860
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,7 @@ class QgsDataSourceURI
%End
public:
//! \note enumeration added in version 1.1
enum SSLmode { SSLprefer, SSLdisable, SSLallow, SSLrequire };
//! default constructor
@ -30,6 +31,7 @@ public:
QString quotedTablename() const;
//! Set all connection related members at once
//! \note This optional sslmode parameter has been added in version 1.1
void setConnection(const QString& aHost,
const QString& aPort,
const QString& aDatabase,

View File

@ -30,6 +30,7 @@
class CORE_EXPORT QgsDataSourceURI
{
public:
//! \note enumeration added in version 1.1
enum SSLmode { SSLprefer, SSLdisable, SSLallow, SSLrequire };
//! default constructor
@ -48,6 +49,7 @@ class CORE_EXPORT QgsDataSourceURI
QString quotedTablename() const;
//! Set all connection related members at once
//! \note This optional sslmode parameter has been added in version 1.1
void setConnection( const QString& aHost,
const QString& aPort,
const QString& aDatabase,