author | mickeyl <mickeyl> | 2003-08-10 15:42:26 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-08-10 15:42:26 (UTC) |
commit | 90dbd3e9e7139c1280e71f9c77ed4362b8d0f367 (patch) (side-by-side diff) | |
tree | 22f0947337ea9b21a1d8f56d04ce3292c9d6f19e /libsql/osqlbackend.h | |
parent | 616e919ff6aea6a30e18edb37128c229e806beae (diff) | |
download | opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.zip opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.tar.gz opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.tar.bz2 |
libsql is now a part of libopie2
-rw-r--r-- | libsql/osqlbackend.h | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/libsql/osqlbackend.h b/libsql/osqlbackend.h deleted file mode 100644 index ad879a4..0000000 --- a/libsql/osqlbackend.h +++ b/dev/null @@ -1,75 +0,0 @@ - -#ifndef OSQL_BACKEND_H -#define OSQL_BACKEND_H - -#include <qcstring.h> -#include <qstring.h> -#include <qvaluelist.h> - -/** - * OSQLBackEnd represents an available backend - * to the Opie Database Service - * It's used to easily extend OSQL services by - * 3rd party plugins. - * It's used to show - */ -class OSQLBackEnd /*: public QShared */ { -public: - typedef QValueList<OSQLBackEnd> ValueList; - /** - * A basic c'tor - * @param name the user visible name of the service - * @param vendor the vendor of the service - * @param license the license of the service - * @param library what is the name of lib if builtin it's builtin - */ - OSQLBackEnd( const QString& name = QString::null, - const QString& vendor = QString::null, - const QString& license = QString::null, - const QCString& library = QCString() ); - OSQLBackEnd( const OSQLBackEnd& ); - OSQLBackEnd &operator=( const OSQLBackEnd& ); - bool operator==(const OSQLBackEnd& ); - - ~OSQLBackEnd(); - - /** @return the name */ - QString name()const; - - /** @return the vendor */ - QString vendor()const; - - /** @return the license */ - QString license()const; - - /** @return the name of the library */ - QCString library() const; - - bool isDefault()const; - int preference()const; - - /** @param name the name to set */ - void setName( const QString& name ); - - /** @param vendor the vendor to set */ - void setVendor( const QString& vendor ); - - /** @param license the license applied */ - void setLicense( const QString& license ); - - /** @param the lib to set */ - void setLibrary( const QCString& lib ); - - void setDefault( bool ); - void setPreference( int ); - -private: - QString m_name; - QString m_vendor; - QString m_license; - QCString m_lib; - bool m_default :1; - int m_pref; -}; - -#endif |