diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | f4fae92b6768541e2952173c3d4b09040f95bf7e (patch) | |
tree | d8c5d93232235cd635f3310b4d95490df181ba2d /kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h | |
parent | 125c0a08265b75a133644d3b55f47e37c919f45d (diff) | |
download | tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h')
-rw-r--r-- | kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h b/kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h deleted file mode 100644 index f38cb5c8..00000000 --- a/kpilot/Documentation/ConduitProgrammingTutorial/mal-factory.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef _TIME_FACTORY_H -#define _TIME_FACTORY_H -/* MAL-factory.h KPilot -** -** Copyright (C) 2002 by Reinhold Kainhofer -** -** This file defines the factory for the mal-conduit plugin. -*/ - -#include <klibloader.h> - -class KInstance; -class KAboutData; - -class MALConduitFactory : public KLibFactory -{ -Q_OBJECT - -public: - MALConduitFactory(TQObject * = 0L,const char * = 0L); - virtual ~MALConduitFactory(); - - static KAboutData *about() { return fAbout; } ; - static const char *lastSync() { return fLastSync; }; - static const char *syncTime() {return fSyncTime;}; - static const char *proxyType() {return fProxyType;}; - static const char *proxyServer() {return fProxyServer;}; - static const char *proxyPort() {return fProxyPort;}; - static const char *proxyUser() {return fProxyUser;}; - static const char *proxyPassword() {return fProxyPassword;}; - static const char *malServer() {return fMALServer;}; - static const char *malPort() {return fMALPort;}; - static const char *malUser() {return fMALUser;}; - static const char *malPassword() {return fMALPassword;}; - -protected: - virtual TQObject* createObject( TQObject* parent = 0, - const char* name = 0, - const char* classname = "TQObject", - const TQStringList &args = TQStringList() ); -private: - KInstance *fInstance; - static KAboutData *fAbout; - // KConfig entry keys. - static const char *fGroup; - static const char *fLastSync, *fSyncTime, - *fProxyType, *fProxyServer, *fProxyPort, *fProxyUser, *fProxyPassword; -} ; - -extern "C" { - void *init_libmalconduit(); -} ; - -#endif |