summaryrefslogtreecommitdiff
path: root/libopie2/opiedb/osqlbackend.cpp
authormickeyl <mickeyl>2003-08-10 15:40:31 (UTC)
committer mickeyl <mickeyl>2003-08-10 15:40:31 (UTC)
commit616e919ff6aea6a30e18edb37128c229e806beae (patch) (side-by-side diff)
tree31e36f7d631b3dc55460aefd05bc6a455e73ace1 /libopie2/opiedb/osqlbackend.cpp
parentdfcbe21d8b263c13283e226bd16596c2d7c2f9a3 (diff)
downloadopie-616e919ff6aea6a30e18edb37128c229e806beae.zip
opie-616e919ff6aea6a30e18edb37128c229e806beae.tar.gz
opie-616e919ff6aea6a30e18edb37128c229e806beae.tar.bz2
merge zeckes libsql into libopie2
Diffstat (limited to 'libopie2/opiedb/osqlbackend.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiedb/osqlbackend.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/libopie2/opiedb/osqlbackend.cpp b/libopie2/opiedb/osqlbackend.cpp
new file mode 100644
index 0000000..d6c39a9
--- a/dev/null
+++ b/libopie2/opiedb/osqlbackend.cpp
@@ -0,0 +1,73 @@
+
+#include "osqlbackend.h"
+
+
+OSQLBackEnd::OSQLBackEnd( const QString& name,
+ const QString& vendor,
+ const QString& license,
+ const QCString& lib )
+ : m_name( name), m_vendor( vendor), m_license( license ), m_lib( lib )
+{
+ m_default = false;
+ m_pref = -1;
+}
+OSQLBackEnd::OSQLBackEnd( const OSQLBackEnd& back ) {
+ (*this) = back;
+}
+OSQLBackEnd::~OSQLBackEnd() {
+}
+bool OSQLBackEnd::operator==( const OSQLBackEnd& other ) {
+ if ( m_pref != other.m_pref ) return false;
+ if ( m_default != other.m_default ) return false;
+ if ( m_name != other.m_name ) return false;
+ if ( m_vendor != other.m_vendor ) return false;
+ if ( m_license != other.m_license ) return false;
+ if ( m_lib != other.m_lib ) return false;
+
+ return true;
+}
+OSQLBackEnd &OSQLBackEnd::operator=(const OSQLBackEnd& back ) {
+ m_name = back.m_name;
+ m_vendor = back.m_vendor;
+ m_license = back.m_license;
+ m_lib = back.m_lib;
+ m_pref = back.m_pref;
+ m_default = back.m_default;
+ return *this;
+}
+QString OSQLBackEnd::name() const {
+ return m_name;
+}
+QString OSQLBackEnd::vendor() const {
+ return m_vendor;
+}
+QString OSQLBackEnd::license() const {
+ return m_license;
+}
+QCString OSQLBackEnd::library() const {
+ return m_lib;
+}
+bool OSQLBackEnd::isDefault()const {
+ return m_default;
+}
+int OSQLBackEnd::preference()const {
+ return m_pref;
+}
+void OSQLBackEnd::setName( const QString& name ) {
+ m_name = name;
+}
+void OSQLBackEnd::setVendor( const QString& vendor ) {
+ m_vendor = vendor;
+}
+void OSQLBackEnd::setLicense( const QString & license ) {
+ m_license = license;
+}
+void OSQLBackEnd::setLibrary( const QCString& lib ) {
+ m_lib = lib;
+}
+void OSQLBackEnd::setDefault( bool def) {
+ m_default = def;
+}
+void OSQLBackEnd::setPreference( int pref ) {
+ m_pref = pref;
+}