├── .DS_Store ├── Client1 ├── .DS_Store ├── Client1.pro ├── MANIFEST.MF ├── client1.qrc ├── client1activator.cpp ├── client1activator.h ├── client1dlg.cpp ├── client1dlg.h ├── client1dlg.ui ├── client1plugin.cpp └── client1plugin.h ├── MainWindow ├── .DS_Store ├── MANIFEST.MF ├── MainWindow.pro ├── mainwindow.qrc ├── mainwindowactivator.cpp ├── mainwindowactivator.h ├── mainwindowdlg.cpp ├── mainwindowdlg.h ├── mainwindowdlg.ui ├── mainwindowplugin.cpp └── mainwindowplugin.h ├── console ├── console.pro └── main.cpp ├── ctkExample.pro ├── includes ├── .DS_Store ├── core │ ├── .DS_Store │ ├── ctkAbstractFactory.h │ ├── ctkAbstractFileBasedFactory.h │ ├── ctkAbstractLibraryFactory.h │ ├── ctkAbstractObjectFactory.h │ ├── ctkAbstractPluginFactory.h │ ├── ctkAbstractQObjectFactory.h │ ├── ctkBackTrace.h │ ├── ctkBinaryFileDescriptor.h │ ├── ctkBooleanMapper.h │ ├── ctkCallback.h │ ├── ctkCommandLineParser.h │ ├── ctkCompilerDetections_p.h │ ├── ctkCoreExport.h │ ├── ctkCorePythonQtDecorators.h │ ├── ctkCoreTestingMacros.h │ ├── ctkCoreTestingUtilities.h │ ├── ctkDependencyGraph.h │ ├── ctkErrorLogAbstractMessageHandler.h │ ├── ctkErrorLogContext.h │ ├── ctkErrorLogFDMessageHandler.h │ ├── ctkErrorLogFDMessageHandler_p.h │ ├── ctkErrorLogLevel.h │ ├── ctkErrorLogQtMessageHandler.h │ ├── ctkErrorLogStreamMessageHandler.h │ ├── ctkErrorLogTerminalOutput.h │ ├── ctkException.h │ ├── ctkFileLogger.h │ ├── ctkHighPrecisionTimer.h │ ├── ctkLinearValueProxy.h │ ├── ctkLogger.h │ ├── ctkModelTester.h │ ├── ctkPimpl.h │ ├── ctkScopedCurrentDir.h │ ├── ctkSetName.h │ ├── ctkSingleton.h │ ├── ctkUtils.h │ ├── ctkValueProxy.h │ ├── ctkWorkflow.h │ ├── ctkWorkflowStep.h │ ├── ctkWorkflowStep_p.h │ ├── ctkWorkflowTransitions.h │ └── ctkWorkflow_p.h ├── imainwindow.h └── pluginFramework │ ├── .DS_Store │ ├── ctkApplicationRunnable.cpp │ ├── ctkApplicationRunnable.h │ ├── ctkBasicLocation.cpp │ ├── ctkBasicLocation_p.h │ ├── ctkDefaultApplicationLauncher.cpp │ ├── ctkDefaultApplicationLauncher_p.h │ ├── ctkDictionary.h │ ├── ctkLDAPExpr.cpp │ ├── ctkLDAPExpr_p.h │ ├── ctkLDAPSearchFilter.cpp │ ├── ctkLDAPSearchFilter.h │ ├── ctkLocationManager.cpp │ ├── ctkLocationManager_p.h │ ├── ctkPlugin.cpp │ ├── ctkPlugin.h │ ├── ctkPluginAbstractTracked.tpp │ ├── ctkPluginAbstractTracked_p.h │ ├── ctkPluginActivator.h │ ├── ctkPluginArchive.cpp │ ├── ctkPluginArchiveSQL.cpp │ ├── ctkPluginArchiveSQL_p.h │ ├── ctkPluginArchive_p.h │ ├── ctkPluginConstants.cpp │ ├── ctkPluginConstants.h │ ├── ctkPluginContext.cpp │ ├── ctkPluginContext.h │ ├── ctkPluginContext_p.h │ ├── ctkPluginDatabaseException.cpp │ ├── ctkPluginDatabaseException.h │ ├── ctkPluginEvent.cpp │ ├── ctkPluginEvent.h │ ├── ctkPluginException.cpp │ ├── ctkPluginException.h │ ├── ctkPluginFramework.cpp │ ├── ctkPluginFramework.h │ ├── ctkPluginFrameworkContext.cpp │ ├── ctkPluginFrameworkContext_p.h │ ├── ctkPluginFrameworkDebug.cpp │ ├── ctkPluginFrameworkDebugOptions.cpp │ ├── ctkPluginFrameworkDebugOptions_p.h │ ├── ctkPluginFrameworkDebug_p.h │ ├── ctkPluginFrameworkEvent.cpp │ ├── ctkPluginFrameworkEvent.h │ ├── ctkPluginFrameworkExport.h │ ├── ctkPluginFrameworkFactory.cpp │ ├── ctkPluginFrameworkFactory.h │ ├── ctkPluginFrameworkLauncher.cpp │ ├── ctkPluginFrameworkLauncher.h │ ├── ctkPluginFrameworkListeners.cpp │ ├── ctkPluginFrameworkListeners_p.h │ ├── ctkPluginFrameworkProperties.cpp │ ├── ctkPluginFrameworkProperties_p.h │ ├── ctkPluginFrameworkUtil.cpp │ ├── ctkPluginFrameworkUtil_p.h │ ├── ctkPluginFramework_global.h │ ├── ctkPluginFramework_p.cpp │ ├── ctkPluginFramework_p.h │ ├── ctkPluginLocalization.cpp │ ├── ctkPluginLocalization.h │ ├── ctkPluginManifest.cpp │ ├── ctkPluginManifest_p.h │ ├── ctkPluginStorageSQL.cpp │ ├── ctkPluginStorageSQL_p.h │ ├── ctkPluginStorage_p.h │ ├── ctkPluginTracker.h │ ├── ctkPluginTracker.tpp │ ├── ctkPluginTrackerCustomizer.h │ ├── ctkPluginTracker_p.h │ ├── ctkPluginTracker_p.tpp │ ├── ctkPlugin_p.cpp │ ├── ctkPlugin_p.h │ ├── ctkPlugins.cpp │ ├── ctkPlugins_p.h │ ├── ctkRequirePlugin.cpp │ ├── ctkRequirePlugin_p.h │ ├── ctkServiceEvent.cpp │ ├── ctkServiceEvent.h │ ├── ctkServiceException.cpp │ ├── ctkServiceException.h │ ├── ctkServiceFactory.h │ ├── ctkServiceProperties.cpp │ ├── ctkServiceProperties_p.h │ ├── ctkServiceReference.cpp │ ├── ctkServiceReference.h │ ├── ctkServiceReference_p.cpp │ ├── ctkServiceReference_p.h │ ├── ctkServiceRegistration.cpp │ ├── ctkServiceRegistration.h │ ├── ctkServiceRegistration_p.cpp │ ├── ctkServiceRegistration_p.h │ ├── ctkServiceSlotEntry.cpp │ ├── ctkServiceSlotEntry_p.h │ ├── ctkServiceTracker.h │ ├── ctkServiceTracker.tpp │ ├── ctkServiceTrackerCustomizer.h │ ├── ctkServiceTracker_p.h │ ├── ctkServiceTracker_p.tpp │ ├── ctkServices.cpp │ ├── ctkServices_p.h │ ├── ctkTrackedPlugin.tpp │ ├── ctkTrackedPluginListener_p.h │ ├── ctkTrackedPlugin_p.h │ ├── ctkTrackedService.tpp │ ├── ctkTrackedServiceListener_p.h │ ├── ctkTrackedService_p.h │ ├── ctkVersion.cpp │ ├── ctkVersion.h │ ├── ctkVersionRange.cpp │ ├── ctkVersionRange_p.h │ └── service │ ├── application │ ├── ctkApplicationDescriptor.cpp │ ├── ctkApplicationDescriptor.h │ ├── ctkApplicationException.cpp │ ├── ctkApplicationException.h │ ├── ctkApplicationHandle.cpp │ ├── ctkApplicationHandle.h │ └── ctkApplicationLauncher.h │ ├── cm │ ├── ctkConfiguration.cpp │ ├── ctkConfiguration.h │ ├── ctkConfigurationAdmin.cpp │ ├── ctkConfigurationAdmin.h │ ├── ctkConfigurationEvent.cpp │ ├── ctkConfigurationEvent.h │ ├── ctkConfigurationException.cpp │ ├── ctkConfigurationException.h │ ├── ctkConfigurationListener.h │ ├── ctkConfigurationPlugin.cpp │ ├── ctkConfigurationPlugin.h │ ├── ctkManagedService.h │ └── ctkManagedServiceFactory.h │ ├── datalocation │ ├── ctkLocation.cpp │ └── ctkLocation.h │ ├── debug │ ├── ctkDebugOptions.cpp │ ├── ctkDebugOptions.h │ └── ctkDebugOptionsListener.h │ ├── event │ ├── ctkEvent.cpp │ ├── ctkEvent.h │ ├── ctkEventAdmin.h │ ├── ctkEventConstants.cpp │ ├── ctkEventConstants.h │ └── ctkEventHandler.h │ ├── log │ ├── ctkLogEntry.h │ ├── ctkLogListener.h │ ├── ctkLogReaderService.h │ ├── ctkLogService.cpp │ ├── ctkLogService.h │ ├── ctkLogStream.cpp │ └── ctkLogStream.h │ └── metatype │ ├── ctkAttributeDefinition.cpp │ ├── ctkAttributeDefinition.h │ ├── ctkMetaTypeInformation.h │ ├── ctkMetaTypeProvider.cpp │ ├── ctkMetaTypeProvider.h │ ├── ctkMetaTypeService.cpp │ ├── ctkMetaTypeService.h │ └── ctkObjectClassDefinition.h └── libs ├── .DS_Store ├── libCTKCore.0.1.0.dylib ├── libCTKCore.0.1.dylib ├── libCTKCore.dylib ├── libCTKPluginFramework.0.1.0.dylib ├── libCTKPluginFramework.0.1.dylib ├── libCTKPluginFramework.dylib └── liborg_commontk_eventadmin.dylib /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/.DS_Store -------------------------------------------------------------------------------- /Client1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/.DS_Store -------------------------------------------------------------------------------- /Client1/Client1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/Client1.pro -------------------------------------------------------------------------------- /Client1/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/MANIFEST.MF -------------------------------------------------------------------------------- /Client1/client1.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1.qrc -------------------------------------------------------------------------------- /Client1/client1activator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1activator.cpp -------------------------------------------------------------------------------- /Client1/client1activator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1activator.h -------------------------------------------------------------------------------- /Client1/client1dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1dlg.cpp -------------------------------------------------------------------------------- /Client1/client1dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1dlg.h -------------------------------------------------------------------------------- /Client1/client1dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1dlg.ui -------------------------------------------------------------------------------- /Client1/client1plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1plugin.cpp -------------------------------------------------------------------------------- /Client1/client1plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/Client1/client1plugin.h -------------------------------------------------------------------------------- /MainWindow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/.DS_Store -------------------------------------------------------------------------------- /MainWindow/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/MANIFEST.MF -------------------------------------------------------------------------------- /MainWindow/MainWindow.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/MainWindow.pro -------------------------------------------------------------------------------- /MainWindow/mainwindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindow.qrc -------------------------------------------------------------------------------- /MainWindow/mainwindowactivator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowactivator.cpp -------------------------------------------------------------------------------- /MainWindow/mainwindowactivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowactivator.h -------------------------------------------------------------------------------- /MainWindow/mainwindowdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowdlg.cpp -------------------------------------------------------------------------------- /MainWindow/mainwindowdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowdlg.h -------------------------------------------------------------------------------- /MainWindow/mainwindowdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowdlg.ui -------------------------------------------------------------------------------- /MainWindow/mainwindowplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowplugin.cpp -------------------------------------------------------------------------------- /MainWindow/mainwindowplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/MainWindow/mainwindowplugin.h -------------------------------------------------------------------------------- /console/console.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/console/console.pro -------------------------------------------------------------------------------- /console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/console/main.cpp -------------------------------------------------------------------------------- /ctkExample.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/ctkExample.pro -------------------------------------------------------------------------------- /includes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/.DS_Store -------------------------------------------------------------------------------- /includes/core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/.DS_Store -------------------------------------------------------------------------------- /includes/core/ctkAbstractFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractFactory.h -------------------------------------------------------------------------------- /includes/core/ctkAbstractFileBasedFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractFileBasedFactory.h -------------------------------------------------------------------------------- /includes/core/ctkAbstractLibraryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractLibraryFactory.h -------------------------------------------------------------------------------- /includes/core/ctkAbstractObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractObjectFactory.h -------------------------------------------------------------------------------- /includes/core/ctkAbstractPluginFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractPluginFactory.h -------------------------------------------------------------------------------- /includes/core/ctkAbstractQObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkAbstractQObjectFactory.h -------------------------------------------------------------------------------- /includes/core/ctkBackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkBackTrace.h -------------------------------------------------------------------------------- /includes/core/ctkBinaryFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkBinaryFileDescriptor.h -------------------------------------------------------------------------------- /includes/core/ctkBooleanMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkBooleanMapper.h -------------------------------------------------------------------------------- /includes/core/ctkCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCallback.h -------------------------------------------------------------------------------- /includes/core/ctkCommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCommandLineParser.h -------------------------------------------------------------------------------- /includes/core/ctkCompilerDetections_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCompilerDetections_p.h -------------------------------------------------------------------------------- /includes/core/ctkCoreExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCoreExport.h -------------------------------------------------------------------------------- /includes/core/ctkCorePythonQtDecorators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCorePythonQtDecorators.h -------------------------------------------------------------------------------- /includes/core/ctkCoreTestingMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCoreTestingMacros.h -------------------------------------------------------------------------------- /includes/core/ctkCoreTestingUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkCoreTestingUtilities.h -------------------------------------------------------------------------------- /includes/core/ctkDependencyGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkDependencyGraph.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogAbstractMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogAbstractMessageHandler.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogContext.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogFDMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogFDMessageHandler.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogFDMessageHandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogFDMessageHandler_p.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogLevel.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogQtMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogQtMessageHandler.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogStreamMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogStreamMessageHandler.h -------------------------------------------------------------------------------- /includes/core/ctkErrorLogTerminalOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkErrorLogTerminalOutput.h -------------------------------------------------------------------------------- /includes/core/ctkException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkException.h -------------------------------------------------------------------------------- /includes/core/ctkFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkFileLogger.h -------------------------------------------------------------------------------- /includes/core/ctkHighPrecisionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkHighPrecisionTimer.h -------------------------------------------------------------------------------- /includes/core/ctkLinearValueProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkLinearValueProxy.h -------------------------------------------------------------------------------- /includes/core/ctkLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkLogger.h -------------------------------------------------------------------------------- /includes/core/ctkModelTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkModelTester.h -------------------------------------------------------------------------------- /includes/core/ctkPimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkPimpl.h -------------------------------------------------------------------------------- /includes/core/ctkScopedCurrentDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkScopedCurrentDir.h -------------------------------------------------------------------------------- /includes/core/ctkSetName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkSetName.h -------------------------------------------------------------------------------- /includes/core/ctkSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkSingleton.h -------------------------------------------------------------------------------- /includes/core/ctkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkUtils.h -------------------------------------------------------------------------------- /includes/core/ctkValueProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkValueProxy.h -------------------------------------------------------------------------------- /includes/core/ctkWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkWorkflow.h -------------------------------------------------------------------------------- /includes/core/ctkWorkflowStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkWorkflowStep.h -------------------------------------------------------------------------------- /includes/core/ctkWorkflowStep_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkWorkflowStep_p.h -------------------------------------------------------------------------------- /includes/core/ctkWorkflowTransitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkWorkflowTransitions.h -------------------------------------------------------------------------------- /includes/core/ctkWorkflow_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/core/ctkWorkflow_p.h -------------------------------------------------------------------------------- /includes/imainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/imainwindow.h -------------------------------------------------------------------------------- /includes/pluginFramework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/.DS_Store -------------------------------------------------------------------------------- /includes/pluginFramework/ctkApplicationRunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkApplicationRunnable.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkApplicationRunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkApplicationRunnable.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkBasicLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkBasicLocation.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkBasicLocation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkBasicLocation_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkDefaultApplicationLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkDefaultApplicationLauncher.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkDefaultApplicationLauncher_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkDefaultApplicationLauncher_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkDictionary.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLDAPExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLDAPExpr.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLDAPExpr_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLDAPExpr_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLDAPSearchFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLDAPSearchFilter.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLDAPSearchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLDAPSearchFilter.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLocationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLocationManager.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkLocationManager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkLocationManager_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugin.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugin.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginAbstractTracked.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginAbstractTracked.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginAbstractTracked_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginAbstractTracked_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginActivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginActivator.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginArchive.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginArchiveSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginArchiveSQL.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginArchiveSQL_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginArchiveSQL_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginArchive_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginArchive_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginConstants.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginConstants.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginContext.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginContext.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginContext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginContext_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginDatabaseException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginDatabaseException.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginDatabaseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginDatabaseException.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginEvent.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginEvent.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginException.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginException.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFramework.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFramework.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkContext.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkContext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkContext_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkDebug.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkDebugOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkDebugOptions.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkDebugOptions_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkDebugOptions_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkDebug_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkDebug_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkEvent.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkEvent.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkExport.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkFactory.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkFactory.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkLauncher.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkLauncher.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkListeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkListeners.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkListeners_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkListeners_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkProperties.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkProperties_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkProperties_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkUtil.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFrameworkUtil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFrameworkUtil_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFramework_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFramework_global.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFramework_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFramework_p.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginFramework_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginFramework_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginLocalization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginLocalization.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginLocalization.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginManifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginManifest.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginManifest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginManifest_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginStorageSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginStorageSQL.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginStorageSQL_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginStorageSQL_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginStorage_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginStorage_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginTracker.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginTracker.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginTracker.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginTrackerCustomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginTrackerCustomizer.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginTracker_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginTracker_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPluginTracker_p.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPluginTracker_p.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugin_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugin_p.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugin_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugins.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkPlugins_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkPlugins_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkRequirePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkRequirePlugin.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkRequirePlugin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkRequirePlugin_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceEvent.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceEvent.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceException.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceException.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceFactory.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceProperties.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceProperties_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceProperties_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceReference.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceReference.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceReference_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceReference_p.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceReference_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceReference_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceRegistration.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceRegistration.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceRegistration_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceRegistration_p.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceRegistration_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceRegistration_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceSlotEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceSlotEntry.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceSlotEntry_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceSlotEntry_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceTracker.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceTracker.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceTracker.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceTrackerCustomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceTrackerCustomizer.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceTracker_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceTracker_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServiceTracker_p.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServiceTracker_p.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServices.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkServices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkServices_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedPlugin.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedPlugin.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedPluginListener_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedPluginListener_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedPlugin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedPlugin_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedService.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedService.tpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedServiceListener_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedServiceListener_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkTrackedService_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkTrackedService_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkVersion.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkVersion.h -------------------------------------------------------------------------------- /includes/pluginFramework/ctkVersionRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkVersionRange.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/ctkVersionRange_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/ctkVersionRange_p.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationDescriptor.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationDescriptor.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationException.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationException.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationHandle.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationHandle.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/application/ctkApplicationLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/application/ctkApplicationLauncher.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfiguration.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfiguration.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationAdmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationAdmin.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationAdmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationAdmin.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationEvent.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationEvent.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationException.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationException.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationListener.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationPlugin.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkConfigurationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkConfigurationPlugin.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkManagedService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkManagedService.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/cm/ctkManagedServiceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/cm/ctkManagedServiceFactory.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/datalocation/ctkLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/datalocation/ctkLocation.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/datalocation/ctkLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/datalocation/ctkLocation.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/debug/ctkDebugOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/debug/ctkDebugOptions.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/debug/ctkDebugOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/debug/ctkDebugOptions.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/debug/ctkDebugOptionsListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/debug/ctkDebugOptionsListener.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEvent.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEvent.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEventAdmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEventAdmin.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEventConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEventConstants.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEventConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEventConstants.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/event/ctkEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/event/ctkEventHandler.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogEntry.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogListener.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogReaderService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogReaderService.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogService.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogService.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogStream.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/log/ctkLogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/log/ctkLogStream.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkAttributeDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkAttributeDefinition.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkAttributeDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkAttributeDefinition.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkMetaTypeInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkMetaTypeInformation.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkMetaTypeProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkMetaTypeProvider.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkMetaTypeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkMetaTypeProvider.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkMetaTypeService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkMetaTypeService.cpp -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkMetaTypeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkMetaTypeService.h -------------------------------------------------------------------------------- /includes/pluginFramework/service/metatype/ctkObjectClassDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/includes/pluginFramework/service/metatype/ctkObjectClassDefinition.h -------------------------------------------------------------------------------- /libs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/libs/.DS_Store -------------------------------------------------------------------------------- /libs/libCTKCore.0.1.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/libs/libCTKCore.0.1.0.dylib -------------------------------------------------------------------------------- /libs/libCTKCore.0.1.dylib: -------------------------------------------------------------------------------- 1 | libCTKCore.0.1.0.dylib -------------------------------------------------------------------------------- /libs/libCTKCore.dylib: -------------------------------------------------------------------------------- 1 | libCTKCore.0.1.dylib -------------------------------------------------------------------------------- /libs/libCTKPluginFramework.0.1.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/libs/libCTKPluginFramework.0.1.0.dylib -------------------------------------------------------------------------------- /libs/libCTKPluginFramework.0.1.dylib: -------------------------------------------------------------------------------- 1 | libCTKPluginFramework.0.1.0.dylib -------------------------------------------------------------------------------- /libs/libCTKPluginFramework.dylib: -------------------------------------------------------------------------------- 1 | libCTKPluginFramework.0.1.dylib -------------------------------------------------------------------------------- /libs/liborg_commontk_eventadmin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iyme/ctkExample/HEAD/libs/liborg_commontk_eventadmin.dylib --------------------------------------------------------------------------------