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/osqlmanager.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/osqlmanager.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/libsql/osqlmanager.h b/libsql/osqlmanager.h deleted file mode 100644 index b3d8d69..0000000 --- a/libsql/osqlmanager.h +++ b/dev/null @@ -1,62 +0,0 @@ - -#ifndef OSQL_MANAGER_H -#define OSQL_MANAGER_H - -#include <qobject.h> - -#include "osqlbackend.h" - -/** - * OSQLManager is responsible for loading - * and unloading, querying different OSQL - * services - * Load a OSQLDriver and delete it yourself - * - */ -class OSQLDriver; -class OSQLManager : public QObject { - Q_OBJECT -public: - /** - * Empty c'tor - */ - OSQLManager(); - - /** - * Query the Manager for different backends - */ - OSQLBackEnd::ValueList queryBackEnd(); - - /** - * Load a backend with it's name from param name - */ - OSQLDriver* load( const QString& name ); - - /** - * Load a OSQLDevice from const reference of OSQLBackEnd - */ - OSQLDriver* load( const OSQLBackEnd& ); - - /** - * loads the Opie standard backend - */ - OSQLDriver *standard(); - - /** - * register path to the search path list - * When querying for services we scan all the - * registered path for backends - */ - void registerPath( const QString& path ); - - /** - * unregisterPath from the search path list - */ - bool unregisterPath( const QString& path ); -private: - OSQLBackEnd::ValueList builtIn()const; - OSQLBackEnd::ValueList m_list; - QStringList m_path; -}; - -#endif |