├── .gitattributes ├── .github └── workflows │ ├── cmake4mac.yml │ ├── cmake4ubuntu.yml │ ├── cmake4win.yml │ ├── codeql-analysis.yml │ ├── pip4linux.yml │ ├── pip4mac.yml │ └── pip4win.yml ├── .gitignore ├── CGraph-build.sh ├── CGraph-docker-env.sh ├── CGraph-ninja-build.sh ├── CGraph-run-examples.sh ├── CGraph-run-functional-tests.sh ├── CGraph-run-performance-tests.sh ├── CGraph-run-tutorials.sh ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COMPILE.md ├── CONTRIBUTORS.md ├── Doxyfile ├── LICENSE ├── MODULE.bazel ├── README.md ├── README_en.md ├── WORKSPACE ├── cmake └── CGraph-env-include.cmake ├── doc ├── image │ ├── CGraph Author.jpg │ ├── CGraph Demo.jpg │ ├── CGraph Skeleton.jpg │ ├── GrowingGit Logo.png │ ├── HelloGithub Logo.gif │ └── tutorial │ │ ├── T01-Sample.png │ │ ├── T02-Cluster.png │ │ ├── T03-Region.png │ │ ├── T04-Complex.png │ │ └── T06-Condition.png ├── markdown │ └── 听码农的话.md └── xmind │ └── CGraph Intro.xmind ├── dockerfile ├── example ├── BUILD ├── CMakeLists.txt ├── E01-AutoPilot.cpp ├── E02-MockGUI.cpp ├── E03-ThirdFlow.cpp └── E04-MapReduce.cpp ├── python ├── PyCGraph.cpp ├── pycgraph-run-tutorials.sh ├── pyproject.toml ├── setup.py ├── tutorial │ ├── MyGAspect │ │ ├── MyConnApsect.py │ │ ├── MyTimerAspect.py │ │ └── __init__.py │ ├── MyGCondition │ │ ├── MyCondition.py │ │ ├── MyParamCondition.py │ │ └── __init__.py │ ├── MyGDaemon │ │ ├── MyMonitorDaemon.py │ │ └── __init__.py │ ├── MyGEvent │ │ ├── MyPrintEvent.py │ │ └── __init__.py │ ├── MyGMutable │ │ ├── MyMutable.py │ │ └── __init__.py │ ├── MyGNode │ │ ├── HelloCGraphNode.py │ │ ├── MyEventNode.py │ │ ├── MyHoldNode.py │ │ ├── MyMatchNode.py │ │ ├── MyNode1.py │ │ ├── MyNode2.py │ │ ├── MyReadParamNode.py │ │ ├── MyStageNode.py │ │ ├── MyTemplateNode.py │ │ ├── MyWriteParamNode.py │ │ └── __init__.py │ ├── MyParams │ │ ├── MyParam.py │ │ └── __init__.py │ ├── T00-HelloCGraph.py │ ├── T01-Simple.py │ ├── T02-Cluster.py │ ├── T03-Region.py │ ├── T04-Complex.py │ ├── T05-Param.py │ ├── T06-Condition.py │ ├── T07-MultiPipeline.py │ ├── T08-Template.py │ ├── T09-Aspect.py │ ├── T10-AspectParam.py │ ├── T12-Function.py │ ├── T13-Daemon.py │ ├── T14-Hold.py │ ├── T18-Event.py │ ├── T19-Cancel.py │ ├── T20-Suspend.py │ ├── T21-MultiCondition.py │ ├── T22-Timeout.py │ ├── T24-Fence.py │ ├── T26-Mutable.py │ ├── T27-Trim.py │ ├── T28-Stage.py │ └── __init__.py └── wrapper │ ├── PyWrapperInclude.h │ ├── PyWrapperMacro.h │ ├── PywGAspect.h │ ├── PywGCluster.h │ ├── PywGCondition.h │ ├── PywGDaemon.h │ ├── PywGElement.h │ ├── PywGEvent.h │ ├── PywGFence.h │ ├── PywGFunction.h │ ├── PywGMutable.h │ ├── PywGNode.h │ ├── PywGParallelMultiCondition.h │ ├── PywGParam.h │ ├── PywGPassedParam.h │ ├── PywGPipelineDeleter.h │ ├── PywGRegion.h │ ├── PywGSerialMultiCondition.h │ └── PywGStage.h ├── src ├── BUILD ├── CBasic │ ├── CAllocator.h │ ├── CBasicDefine.h │ ├── CBasicInclude.h │ ├── CDescInfo.h │ ├── CException.h │ ├── CFuncType.h │ ├── CObject.h │ ├── CStatus.h │ ├── CStdEx.h │ ├── CStrDefine.h │ ├── CStruct.h │ └── CValType.h ├── CGraph.h ├── DomainCtrl │ ├── Ann │ │ ├── DAnnDefine.h │ │ ├── DAnnInclude.h │ │ ├── DAnnNode.cpp │ │ ├── DAnnNode.h │ │ ├── DAnnObject.h │ │ └── DAnnParam.h │ ├── DomainInclude.h │ └── DomainObject.h ├── GraphCtrl │ ├── GraphAspect │ │ ├── GAspect.cpp │ │ ├── GAspect.h │ │ ├── GAspectDefine.h │ │ ├── GAspectInclude.h │ │ ├── GAspectManager.cpp │ │ ├── GAspectManager.h │ │ ├── GAspectObject.cpp │ │ ├── GAspectObject.h │ │ ├── GAspectObject.inl │ │ └── GTemplateAspect.h │ ├── GraphDaemon │ │ ├── GDaemon.cpp │ │ ├── GDaemon.h │ │ ├── GDaemonInclude.h │ │ ├── GDaemonManager.cpp │ │ ├── GDaemonManager.h │ │ ├── GDaemonObject.h │ │ ├── GDaemonObject.inl │ │ └── GTemplateDaemon.h │ ├── GraphDefine.h │ ├── GraphElement │ │ ├── GAdapter │ │ │ ├── GAdapter.h │ │ │ ├── GAdapterInclude.h │ │ │ ├── GCoordinator │ │ │ │ ├── GCoordinator.h │ │ │ │ └── GCoordinator.inl │ │ │ ├── GFence │ │ │ │ ├── GFence.cpp │ │ │ │ └── GFence.h │ │ │ ├── GFunction │ │ │ │ ├── GFunction.cpp │ │ │ │ └── GFunction.h │ │ │ └── GSingleton │ │ │ │ ├── GSingleton.h │ │ │ │ └── GSingleton.inl │ │ ├── GElement.cpp │ │ ├── GElement.h │ │ ├── GElement.inl │ │ ├── GElementDefine.h │ │ ├── GElementInclude.h │ │ ├── GElementManager.cpp │ │ ├── GElementManager.h │ │ ├── GElementObject.h │ │ ├── GElementRelation.h │ │ ├── GElementRepository.cpp │ │ ├── GElementRepository.h │ │ ├── GElementSorter.h │ │ ├── GGroup │ │ │ ├── GCluster │ │ │ │ ├── GCluster.cpp │ │ │ │ └── GCluster.h │ │ │ ├── GCondition │ │ │ │ ├── GCondition.cpp │ │ │ │ ├── GCondition.h │ │ │ │ ├── GConditionDefine.h │ │ │ │ ├── GConditionInclude.h │ │ │ │ ├── GMultiCondition.h │ │ │ │ └── GMultiCondition.inl │ │ │ ├── GGroup.cpp │ │ │ ├── GGroup.h │ │ │ ├── GGroupDefine.h │ │ │ ├── GGroupInclude.h │ │ │ ├── GMutable │ │ │ │ ├── GMutable.cpp │ │ │ │ └── GMutable.h │ │ │ ├── GRegion │ │ │ │ ├── GRegion.cpp │ │ │ │ └── GRegion.h │ │ │ └── GSome │ │ │ │ ├── GSome.h │ │ │ │ └── GSome.inl │ │ ├── GNode │ │ │ ├── GNode.cpp │ │ │ ├── GNode.h │ │ │ ├── GNodeDefine.h │ │ │ ├── GNodeInclude.h │ │ │ └── GTemplateNode.h │ │ ├── _GEngine │ │ │ ├── GDynamicEngine │ │ │ │ ├── GDynamicEngine.cpp │ │ │ │ └── GDynamicEngine.h │ │ │ ├── GEngine.h │ │ │ ├── GEngineDefine.h │ │ │ ├── GEngineInclude.h │ │ │ ├── GStaticEngine │ │ │ │ ├── GStaticEngine.cpp │ │ │ │ └── GStaticEngine.h │ │ │ └── GTopoEngine │ │ │ │ ├── GTopoEngine.cpp │ │ │ │ └── GTopoEngine.h │ │ └── _GOptimizer │ │ │ ├── GMaxParaOptimizer.h │ │ │ ├── GOptimizer.h │ │ │ ├── GOptimizerInclude.h │ │ │ ├── GSeparateOptimizer.h │ │ │ └── GTrimOptimizer.h │ ├── GraphEvent │ │ ├── GEvent.cpp │ │ ├── GEvent.h │ │ ├── GEventDefine.h │ │ ├── GEventInclude.h │ │ ├── GEventManager.cpp │ │ ├── GEventManager.h │ │ ├── GEventManager.inl │ │ ├── GEventManagerWrapper.h │ │ └── GEventObject.h │ ├── GraphInclude.h │ ├── GraphManager.h │ ├── GraphMessage │ │ ├── GMessage.h │ │ ├── GMessageDefine.h │ │ ├── GMessageInclude.h │ │ ├── GMessageManager.h │ │ ├── GMessageManagerSingleton.cpp │ │ ├── GMessageManagerSingleton.h │ │ ├── GMessageObject.h │ │ └── GMessageUtils.h │ ├── GraphObject.h │ ├── GraphParam │ │ ├── GMessageParam.h │ │ ├── GParam.cpp │ │ ├── GParam.h │ │ ├── GParamInclude.h │ │ ├── GParamManager.cpp │ │ ├── GParamManager.h │ │ ├── GParamManager.inl │ │ ├── GParamManagerWrapper.h │ │ ├── GParamObject.h │ │ ├── GParamUtils.h │ │ ├── GPassedDefaultParam.h │ │ └── GPassedParam.h │ ├── GraphPipeline │ │ ├── GPipeline.cpp │ │ ├── GPipeline.h │ │ ├── GPipeline.inl │ │ ├── GPipelineFactory.cpp │ │ ├── GPipelineFactory.h │ │ ├── GPipelineInclude.h │ │ ├── GPipelineManager.cpp │ │ ├── GPipelineManager.h │ │ ├── GPipelineObject.h │ │ ├── _GPerf │ │ │ ├── GPerf.cpp │ │ │ ├── GPerf.h │ │ │ ├── GPerfAspect.h │ │ │ ├── GPerfDefine.h │ │ │ └── GPerfInclude.h │ │ ├── _GSchedule │ │ │ ├── GSchedule.cpp │ │ │ ├── GSchedule.h │ │ │ ├── GScheduleDefine.h │ │ │ └── GScheduleInclude.h │ │ └── _GStroage │ │ │ ├── GStorage.cpp │ │ │ ├── GStorage.h │ │ │ ├── GStorageDefine.h │ │ │ ├── GStorageFactory.cpp │ │ │ ├── GStorageFactory.h │ │ │ └── GStorageInclude.h │ └── GraphStage │ │ ├── GStage.cpp │ │ ├── GStage.h │ │ ├── GStage.inl │ │ ├── GStageInclude.h │ │ ├── GStageManager.h │ │ ├── GStageManagerWrapper.h │ │ └── GStageObject.h └── UtilsCtrl │ ├── Container │ ├── UContainerInclude.h │ ├── USerialUniqueArray.h │ └── USmallVector.h │ ├── Distance │ ├── Common │ │ ├── UCommonDistanceInclude.h │ │ ├── UCosineDistance.h │ │ └── UEuclideanDistance.h │ ├── UDistance.h │ ├── UDistance.inl │ ├── UDistanceCalculator.h │ ├── UDistanceInclude.h │ └── UDistanceObject.h │ ├── Lru │ ├── ULru.h │ └── ULruNode.h │ ├── Random │ ├── URandom.h │ └── URandomDefine.h │ ├── Reflection │ ├── UReflection.h │ ├── UReflectionDefine.h │ ├── UReflectionInclude.h │ ├── UReflectionSession.h │ └── UReflectionType.h │ ├── Singleton │ ├── USingleton.h │ └── USingletonDefine.h │ ├── ThreadPool │ ├── Lock │ │ ├── UCvMutex.h │ │ ├── ULockInclude.h │ │ └── USpinLock.h │ ├── Queue │ │ ├── UAtomicPriorityQueue.h │ │ ├── UAtomicQueue.h │ │ ├── UAtomicRingBufferQueue.h │ │ ├── ULockFreeRingBufferQueue.h │ │ ├── UQueueDefine.h │ │ ├── UQueueInclude.h │ │ ├── UQueueObject.h │ │ └── UWorkStealingQueue.h │ ├── Semaphore │ │ └── USemaphore.h │ ├── Task │ │ ├── UTask.h │ │ ├── UTaskGroup.h │ │ └── UTaskInclude.h │ ├── Thread │ │ ├── UThreadBase.h │ │ ├── UThreadInclude.h │ │ ├── UThreadPrimary.h │ │ └── UThreadSecondary.h │ ├── UThreadObject.h │ ├── UThreadPool.cpp │ ├── UThreadPool.h │ ├── UThreadPool.inl │ ├── UThreadPoolConfig.h │ ├── UThreadPoolDefine.h │ └── UThreadPoolInclude.h │ ├── Timer │ ├── UTimeCounter.h │ ├── UTimer.h │ └── UTimerInclude.h │ ├── UtilsDefine.h │ ├── UtilsFunction.h │ ├── UtilsInclude.h │ └── UtilsObject.h ├── test ├── Functional │ ├── BUILD │ ├── CMakeLists.txt │ ├── test-functional-01.cpp │ ├── test-functional-02.cpp │ ├── test-functional-03.cpp │ ├── test-functional-04.cpp │ ├── test-functional-05.cpp │ └── test-functional-99.cpp ├── Performance │ ├── BUILD │ ├── CMakeLists.txt │ ├── test-performance-01.cpp │ ├── test-performance-02.cpp │ ├── test-performance-03.cpp │ └── test-performance-04.cpp └── _Materials │ ├── BUILD │ ├── TestCommonDefine.h │ ├── TestGAspects.h │ ├── TestGNodes.h │ ├── TestGParams.h │ └── TestInclude.h ├── tutorial ├── BUILD ├── CMakeLists.txt ├── MyGAspect │ ├── MyConnAspect.h │ ├── MyPipelineParamAspect.h │ ├── MyTemplateAspect.h │ ├── MyTimerAspect.h │ └── MyTraceAspect.h ├── MyGCondition │ ├── MyCondition.h │ └── MyParamCondition.h ├── MyGDaemon │ ├── MyMonitorDaemon.h │ ├── MyParamDaemon.h │ └── MyTemplateDaemon.h ├── MyGEvent │ └── MyPrintEvent.h ├── MyGMutable │ └── MyMutable.h ├── MyGNode │ ├── HelloCGraphNode.h │ ├── MyEParamNode.h │ ├── MyEventNode.h │ ├── MyHoldNode.h │ ├── MyMatchNode.h │ ├── MyNode1.h │ ├── MyNode2.h │ ├── MyPubMessageNode.h │ ├── MyReadParamNode.h │ ├── MyRecvMessageNode.h │ ├── MySendMessageNode.h │ ├── MyShowAddressNode.h │ ├── MyStageNode.h │ ├── MySubMessageNode.h │ ├── MyTemplateNode.h │ ├── MyTemplateV2Node.h │ └── MyWriteParamNode.h ├── MyParams │ ├── MyConnParam.h │ ├── MyMessageParam.h │ ├── MyParam.h │ └── MyVersionParam.h ├── T00-HelloCGraph.cpp ├── T01-Simple.cpp ├── T02-Cluster.cpp ├── T03-Region.cpp ├── T04-Complex.cpp ├── T05-Param.cpp ├── T06-Condition.cpp ├── T07-MultiPipeline.cpp ├── T08-Template.cpp ├── T09-Aspect.cpp ├── T10-AspectParam.cpp ├── T11-Singleton.cpp ├── T12-Function.cpp ├── T13-Daemon.cpp ├── T14-Hold.cpp ├── T15-ElementParam.cpp ├── T16-MessageSendRecv.cpp ├── T17-MessagePubSub.cpp ├── T18-Event.cpp ├── T19-Cancel.cpp ├── T20-Suspend.cpp ├── T21-MultiCondition.cpp ├── T22-Timeout.cpp ├── T23-Some.cpp ├── T24-Fence.cpp ├── T25-Coordinator.cpp ├── T26-Mutable.cpp ├── T27-Trim.cpp ├── T28-Stage.cpp └── T29-Storage.cpp └── xmake.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cmake4mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/cmake4mac.yml -------------------------------------------------------------------------------- /.github/workflows/cmake4ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/cmake4ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/cmake4win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/cmake4win.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pip4linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/pip4linux.yml -------------------------------------------------------------------------------- /.github/workflows/pip4mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/pip4mac.yml -------------------------------------------------------------------------------- /.github/workflows/pip4win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.github/workflows/pip4win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /CGraph-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-build.sh -------------------------------------------------------------------------------- /CGraph-docker-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-docker-env.sh -------------------------------------------------------------------------------- /CGraph-ninja-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-ninja-build.sh -------------------------------------------------------------------------------- /CGraph-run-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-run-examples.sh -------------------------------------------------------------------------------- /CGraph-run-functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-run-functional-tests.sh -------------------------------------------------------------------------------- /CGraph-run-performance-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-run-performance-tests.sh -------------------------------------------------------------------------------- /CGraph-run-tutorials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CGraph-run-tutorials.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/COMPILE.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/README_en.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/CGraph-env-include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/cmake/CGraph-env-include.cmake -------------------------------------------------------------------------------- /doc/image/CGraph Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/CGraph Author.jpg -------------------------------------------------------------------------------- /doc/image/CGraph Demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/CGraph Demo.jpg -------------------------------------------------------------------------------- /doc/image/CGraph Skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/CGraph Skeleton.jpg -------------------------------------------------------------------------------- /doc/image/GrowingGit Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/GrowingGit Logo.png -------------------------------------------------------------------------------- /doc/image/HelloGithub Logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/HelloGithub Logo.gif -------------------------------------------------------------------------------- /doc/image/tutorial/T01-Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/tutorial/T01-Sample.png -------------------------------------------------------------------------------- /doc/image/tutorial/T02-Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/tutorial/T02-Cluster.png -------------------------------------------------------------------------------- /doc/image/tutorial/T03-Region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/tutorial/T03-Region.png -------------------------------------------------------------------------------- /doc/image/tutorial/T04-Complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/tutorial/T04-Complex.png -------------------------------------------------------------------------------- /doc/image/tutorial/T06-Condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/image/tutorial/T06-Condition.png -------------------------------------------------------------------------------- /doc/markdown/听码农的话.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/markdown/听码农的话.md -------------------------------------------------------------------------------- /doc/xmind/CGraph Intro.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/doc/xmind/CGraph Intro.xmind -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/dockerfile -------------------------------------------------------------------------------- /example/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/BUILD -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/E01-AutoPilot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/E01-AutoPilot.cpp -------------------------------------------------------------------------------- /example/E02-MockGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/E02-MockGUI.cpp -------------------------------------------------------------------------------- /example/E03-ThirdFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/E03-ThirdFlow.cpp -------------------------------------------------------------------------------- /example/E04-MapReduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/example/E04-MapReduce.cpp -------------------------------------------------------------------------------- /python/PyCGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/PyCGraph.cpp -------------------------------------------------------------------------------- /python/pycgraph-run-tutorials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/pycgraph-run-tutorials.sh -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/tutorial/MyGAspect/MyConnApsect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGAspect/MyConnApsect.py -------------------------------------------------------------------------------- /python/tutorial/MyGAspect/MyTimerAspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGAspect/MyTimerAspect.py -------------------------------------------------------------------------------- /python/tutorial/MyGAspect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGAspect/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyGCondition/MyCondition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGCondition/MyCondition.py -------------------------------------------------------------------------------- /python/tutorial/MyGCondition/MyParamCondition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGCondition/MyParamCondition.py -------------------------------------------------------------------------------- /python/tutorial/MyGCondition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGCondition/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyGDaemon/MyMonitorDaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGDaemon/MyMonitorDaemon.py -------------------------------------------------------------------------------- /python/tutorial/MyGDaemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGDaemon/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyGEvent/MyPrintEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGEvent/MyPrintEvent.py -------------------------------------------------------------------------------- /python/tutorial/MyGEvent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGEvent/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyGMutable/MyMutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGMutable/MyMutable.py -------------------------------------------------------------------------------- /python/tutorial/MyGMutable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGMutable/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/HelloCGraphNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/HelloCGraphNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyEventNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyEventNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyHoldNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyHoldNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyMatchNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyMatchNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyNode1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyNode1.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyNode2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyNode2.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyReadParamNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyReadParamNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyStageNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyStageNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyTemplateNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyTemplateNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/MyWriteParamNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/MyWriteParamNode.py -------------------------------------------------------------------------------- /python/tutorial/MyGNode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyGNode/__init__.py -------------------------------------------------------------------------------- /python/tutorial/MyParams/MyParam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyParams/MyParam.py -------------------------------------------------------------------------------- /python/tutorial/MyParams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/MyParams/__init__.py -------------------------------------------------------------------------------- /python/tutorial/T00-HelloCGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T00-HelloCGraph.py -------------------------------------------------------------------------------- /python/tutorial/T01-Simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T01-Simple.py -------------------------------------------------------------------------------- /python/tutorial/T02-Cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T02-Cluster.py -------------------------------------------------------------------------------- /python/tutorial/T03-Region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T03-Region.py -------------------------------------------------------------------------------- /python/tutorial/T04-Complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T04-Complex.py -------------------------------------------------------------------------------- /python/tutorial/T05-Param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T05-Param.py -------------------------------------------------------------------------------- /python/tutorial/T06-Condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T06-Condition.py -------------------------------------------------------------------------------- /python/tutorial/T07-MultiPipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T07-MultiPipeline.py -------------------------------------------------------------------------------- /python/tutorial/T08-Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T08-Template.py -------------------------------------------------------------------------------- /python/tutorial/T09-Aspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T09-Aspect.py -------------------------------------------------------------------------------- /python/tutorial/T10-AspectParam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T10-AspectParam.py -------------------------------------------------------------------------------- /python/tutorial/T12-Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T12-Function.py -------------------------------------------------------------------------------- /python/tutorial/T13-Daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T13-Daemon.py -------------------------------------------------------------------------------- /python/tutorial/T14-Hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T14-Hold.py -------------------------------------------------------------------------------- /python/tutorial/T18-Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T18-Event.py -------------------------------------------------------------------------------- /python/tutorial/T19-Cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T19-Cancel.py -------------------------------------------------------------------------------- /python/tutorial/T20-Suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T20-Suspend.py -------------------------------------------------------------------------------- /python/tutorial/T21-MultiCondition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T21-MultiCondition.py -------------------------------------------------------------------------------- /python/tutorial/T22-Timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T22-Timeout.py -------------------------------------------------------------------------------- /python/tutorial/T24-Fence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T24-Fence.py -------------------------------------------------------------------------------- /python/tutorial/T26-Mutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T26-Mutable.py -------------------------------------------------------------------------------- /python/tutorial/T27-Trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T27-Trim.py -------------------------------------------------------------------------------- /python/tutorial/T28-Stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/T28-Stage.py -------------------------------------------------------------------------------- /python/tutorial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/tutorial/__init__.py -------------------------------------------------------------------------------- /python/wrapper/PyWrapperInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PyWrapperInclude.h -------------------------------------------------------------------------------- /python/wrapper/PyWrapperMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PyWrapperMacro.h -------------------------------------------------------------------------------- /python/wrapper/PywGAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGAspect.h -------------------------------------------------------------------------------- /python/wrapper/PywGCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGCluster.h -------------------------------------------------------------------------------- /python/wrapper/PywGCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGCondition.h -------------------------------------------------------------------------------- /python/wrapper/PywGDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGDaemon.h -------------------------------------------------------------------------------- /python/wrapper/PywGElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGElement.h -------------------------------------------------------------------------------- /python/wrapper/PywGEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGEvent.h -------------------------------------------------------------------------------- /python/wrapper/PywGFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGFence.h -------------------------------------------------------------------------------- /python/wrapper/PywGFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGFunction.h -------------------------------------------------------------------------------- /python/wrapper/PywGMutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGMutable.h -------------------------------------------------------------------------------- /python/wrapper/PywGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGNode.h -------------------------------------------------------------------------------- /python/wrapper/PywGParallelMultiCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGParallelMultiCondition.h -------------------------------------------------------------------------------- /python/wrapper/PywGParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGParam.h -------------------------------------------------------------------------------- /python/wrapper/PywGPassedParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGPassedParam.h -------------------------------------------------------------------------------- /python/wrapper/PywGPipelineDeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGPipelineDeleter.h -------------------------------------------------------------------------------- /python/wrapper/PywGRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGRegion.h -------------------------------------------------------------------------------- /python/wrapper/PywGSerialMultiCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGSerialMultiCondition.h -------------------------------------------------------------------------------- /python/wrapper/PywGStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/python/wrapper/PywGStage.h -------------------------------------------------------------------------------- /src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/BUILD -------------------------------------------------------------------------------- /src/CBasic/CAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CAllocator.h -------------------------------------------------------------------------------- /src/CBasic/CBasicDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CBasicDefine.h -------------------------------------------------------------------------------- /src/CBasic/CBasicInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CBasicInclude.h -------------------------------------------------------------------------------- /src/CBasic/CDescInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CDescInfo.h -------------------------------------------------------------------------------- /src/CBasic/CException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CException.h -------------------------------------------------------------------------------- /src/CBasic/CFuncType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CFuncType.h -------------------------------------------------------------------------------- /src/CBasic/CObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CObject.h -------------------------------------------------------------------------------- /src/CBasic/CStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CStatus.h -------------------------------------------------------------------------------- /src/CBasic/CStdEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CStdEx.h -------------------------------------------------------------------------------- /src/CBasic/CStrDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CStrDefine.h -------------------------------------------------------------------------------- /src/CBasic/CStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CStruct.h -------------------------------------------------------------------------------- /src/CBasic/CValType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CBasic/CValType.h -------------------------------------------------------------------------------- /src/CGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/CGraph.h -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnDefine.h -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnInclude.h -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnNode.cpp -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnNode.h -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnObject.h -------------------------------------------------------------------------------- /src/DomainCtrl/Ann/DAnnParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/Ann/DAnnParam.h -------------------------------------------------------------------------------- /src/DomainCtrl/DomainInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/DomainInclude.h -------------------------------------------------------------------------------- /src/DomainCtrl/DomainObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/DomainCtrl/DomainObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspect.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspect.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectObject.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GAspectObject.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GAspectObject.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphAspect/GTemplateAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphAspect/GTemplateAspect.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemon.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemon.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemonInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemonInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemonManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemonManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemonManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemonManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemonObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GDaemonObject.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GDaemonObject.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDaemon/GTemplateDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDaemon/GTemplateDaemon.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GAdapter.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GAdapterInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GAdapterInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GCoordinator/GCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GCoordinator/GCoordinator.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GCoordinator/GCoordinator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GCoordinator/GCoordinator.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GFence/GFence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GFence/GFence.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GFence/GFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GFence/GFence.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GFunction/GFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GFunction/GFunction.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GFunction/GFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GFunction/GFunction.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GSingleton/GSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GSingleton/GSingleton.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GAdapter/GSingleton/GSingleton.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GAdapter/GSingleton/GSingleton.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElement.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElement.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElement.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElement.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementRelation.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementRepository.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementRepository.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GElementSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GElementSorter.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCluster/GCluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCluster/GCluster.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCluster/GCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCluster/GCluster.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GCondition.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GCondition.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GConditionDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GConditionDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GConditionInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GConditionInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GMultiCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GMultiCondition.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GCondition/GMultiCondition.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GCondition/GMultiCondition.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GGroup.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GGroup.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GGroupDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GGroupDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GGroupInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GGroupInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GMutable/GMutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GMutable/GMutable.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GMutable/GMutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GMutable/GMutable.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GRegion/GRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GRegion/GRegion.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GRegion/GRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GRegion/GRegion.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GSome/GSome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GSome/GSome.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GGroup/GSome/GSome.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GGroup/GSome/GSome.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GNode/GNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GNode/GNode.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GNode/GNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GNode/GNode.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GNode/GNodeDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GNode/GNodeDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GNode/GNodeInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GNode/GNodeInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/GNode/GTemplateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/GNode/GTemplateNode.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GDynamicEngine/GDynamicEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GDynamicEngine/GDynamicEngine.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GDynamicEngine/GDynamicEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GDynamicEngine/GDynamicEngine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GEngine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GEngineDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GEngineDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GEngineInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GEngineInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GStaticEngine/GStaticEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GStaticEngine/GStaticEngine.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GStaticEngine/GStaticEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GStaticEngine/GStaticEngine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GTopoEngine/GTopoEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GTopoEngine/GTopoEngine.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GEngine/GTopoEngine/GTopoEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GEngine/GTopoEngine/GTopoEngine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GOptimizer/GMaxParaOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GOptimizer/GMaxParaOptimizer.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GOptimizer/GOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GOptimizer/GOptimizer.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GOptimizer/GOptimizerInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GOptimizer/GOptimizerInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GOptimizer/GSeparateOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GOptimizer/GSeparateOptimizer.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphElement/_GOptimizer/GTrimOptimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphElement/_GOptimizer/GTrimOptimizer.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEvent.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEvent.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventManager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventManager.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventManagerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventManagerWrapper.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphEvent/GEventObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphEvent/GEventObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessage.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageManagerSingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageManagerSingleton.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageManagerSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageManagerSingleton.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphMessage/GMessageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphMessage/GMessageUtils.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GMessageParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GMessageParam.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParam.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParam.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamManager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamManager.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamManagerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamManagerWrapper.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GParamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GParamUtils.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GPassedDefaultParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GPassedDefaultParam.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphParam/GPassedParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphParam/GPassedParam.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipeline.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipeline.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipeline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipeline.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineFactory.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineFactory.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineManager.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/GPipelineObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/GPipelineObject.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GPerf/GPerf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GPerf/GPerf.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GPerf/GPerf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GPerf/GPerf.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GPerf/GPerfAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GPerf/GPerfAspect.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GPerf/GPerfDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GPerf/GPerfDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GPerf/GPerfInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GPerf/GPerfInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GSchedule/GSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GSchedule/GSchedule.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GSchedule/GSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GSchedule/GSchedule.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GSchedule/GScheduleDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GSchedule/GScheduleDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GSchedule/GScheduleInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GSchedule/GScheduleInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorage.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorage.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorageDefine.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorageFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorageFactory.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorageFactory.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphPipeline/_GStroage/GStorageInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphPipeline/_GStroage/GStorageInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStage.cpp -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStage.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStage.inl -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStageInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStageInclude.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStageManager.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStageManagerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStageManagerWrapper.h -------------------------------------------------------------------------------- /src/GraphCtrl/GraphStage/GStageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/GraphCtrl/GraphStage/GStageObject.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Container/UContainerInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Container/UContainerInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Container/USerialUniqueArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Container/USerialUniqueArray.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Container/USmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Container/USmallVector.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/Common/UCommonDistanceInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/Common/UCommonDistanceInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/Common/UCosineDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/Common/UCosineDistance.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/Common/UEuclideanDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/Common/UEuclideanDistance.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/UDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/UDistance.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/UDistance.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/UDistance.inl -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/UDistanceCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/UDistanceCalculator.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/UDistanceInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/UDistanceInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Distance/UDistanceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Distance/UDistanceObject.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Lru/ULru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Lru/ULru.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Lru/ULruNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Lru/ULruNode.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Random/URandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Random/URandom.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Random/URandomDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Random/URandomDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Reflection/UReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Reflection/UReflection.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Reflection/UReflectionDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Reflection/UReflectionDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Reflection/UReflectionInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Reflection/UReflectionInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Reflection/UReflectionSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Reflection/UReflectionSession.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Reflection/UReflectionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Reflection/UReflectionType.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Singleton/USingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Singleton/USingleton.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Singleton/USingletonDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Singleton/USingletonDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Lock/UCvMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Lock/UCvMutex.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Lock/ULockInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Lock/ULockInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Lock/USpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Lock/USpinLock.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UAtomicPriorityQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UAtomicPriorityQueue.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UAtomicQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UAtomicQueue.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UAtomicRingBufferQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UAtomicRingBufferQueue.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/ULockFreeRingBufferQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/ULockFreeRingBufferQueue.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UQueueDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UQueueDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UQueueInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UQueueInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UQueueObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UQueueObject.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Queue/UWorkStealingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Queue/UWorkStealingQueue.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Semaphore/USemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Semaphore/USemaphore.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Task/UTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Task/UTask.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Task/UTaskGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Task/UTaskGroup.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Task/UTaskInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Task/UTaskInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Thread/UThreadBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Thread/UThreadBase.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Thread/UThreadInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Thread/UThreadInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Thread/UThreadPrimary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Thread/UThreadPrimary.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/Thread/UThreadSecondary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/Thread/UThreadSecondary.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadObject.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPool.cpp -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPool.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPool.inl -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPoolConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPoolConfig.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPoolDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPoolDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/ThreadPool/UThreadPoolInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/ThreadPool/UThreadPoolInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Timer/UTimeCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Timer/UTimeCounter.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Timer/UTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Timer/UTimer.h -------------------------------------------------------------------------------- /src/UtilsCtrl/Timer/UTimerInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/Timer/UTimerInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/UtilsDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/UtilsDefine.h -------------------------------------------------------------------------------- /src/UtilsCtrl/UtilsFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/UtilsFunction.h -------------------------------------------------------------------------------- /src/UtilsCtrl/UtilsInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/UtilsInclude.h -------------------------------------------------------------------------------- /src/UtilsCtrl/UtilsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/src/UtilsCtrl/UtilsObject.h -------------------------------------------------------------------------------- /test/Functional/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/BUILD -------------------------------------------------------------------------------- /test/Functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/CMakeLists.txt -------------------------------------------------------------------------------- /test/Functional/test-functional-01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-01.cpp -------------------------------------------------------------------------------- /test/Functional/test-functional-02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-02.cpp -------------------------------------------------------------------------------- /test/Functional/test-functional-03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-03.cpp -------------------------------------------------------------------------------- /test/Functional/test-functional-04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-04.cpp -------------------------------------------------------------------------------- /test/Functional/test-functional-05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-05.cpp -------------------------------------------------------------------------------- /test/Functional/test-functional-99.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Functional/test-functional-99.cpp -------------------------------------------------------------------------------- /test/Performance/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/BUILD -------------------------------------------------------------------------------- /test/Performance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/CMakeLists.txt -------------------------------------------------------------------------------- /test/Performance/test-performance-01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/test-performance-01.cpp -------------------------------------------------------------------------------- /test/Performance/test-performance-02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/test-performance-02.cpp -------------------------------------------------------------------------------- /test/Performance/test-performance-03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/test-performance-03.cpp -------------------------------------------------------------------------------- /test/Performance/test-performance-04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/Performance/test-performance-04.cpp -------------------------------------------------------------------------------- /test/_Materials/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/BUILD -------------------------------------------------------------------------------- /test/_Materials/TestCommonDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/TestCommonDefine.h -------------------------------------------------------------------------------- /test/_Materials/TestGAspects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/TestGAspects.h -------------------------------------------------------------------------------- /test/_Materials/TestGNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/TestGNodes.h -------------------------------------------------------------------------------- /test/_Materials/TestGParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/TestGParams.h -------------------------------------------------------------------------------- /test/_Materials/TestInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/test/_Materials/TestInclude.h -------------------------------------------------------------------------------- /tutorial/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/BUILD -------------------------------------------------------------------------------- /tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /tutorial/MyGAspect/MyConnAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGAspect/MyConnAspect.h -------------------------------------------------------------------------------- /tutorial/MyGAspect/MyPipelineParamAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGAspect/MyPipelineParamAspect.h -------------------------------------------------------------------------------- /tutorial/MyGAspect/MyTemplateAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGAspect/MyTemplateAspect.h -------------------------------------------------------------------------------- /tutorial/MyGAspect/MyTimerAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGAspect/MyTimerAspect.h -------------------------------------------------------------------------------- /tutorial/MyGAspect/MyTraceAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGAspect/MyTraceAspect.h -------------------------------------------------------------------------------- /tutorial/MyGCondition/MyCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGCondition/MyCondition.h -------------------------------------------------------------------------------- /tutorial/MyGCondition/MyParamCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGCondition/MyParamCondition.h -------------------------------------------------------------------------------- /tutorial/MyGDaemon/MyMonitorDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGDaemon/MyMonitorDaemon.h -------------------------------------------------------------------------------- /tutorial/MyGDaemon/MyParamDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGDaemon/MyParamDaemon.h -------------------------------------------------------------------------------- /tutorial/MyGDaemon/MyTemplateDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGDaemon/MyTemplateDaemon.h -------------------------------------------------------------------------------- /tutorial/MyGEvent/MyPrintEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGEvent/MyPrintEvent.h -------------------------------------------------------------------------------- /tutorial/MyGMutable/MyMutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGMutable/MyMutable.h -------------------------------------------------------------------------------- /tutorial/MyGNode/HelloCGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/HelloCGraphNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyEParamNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyEParamNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyEventNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyEventNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyHoldNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyHoldNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyMatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyMatchNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyNode1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyNode1.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyNode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyNode2.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyPubMessageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyPubMessageNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyReadParamNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyReadParamNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyRecvMessageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyRecvMessageNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MySendMessageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MySendMessageNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyShowAddressNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyShowAddressNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyStageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyStageNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MySubMessageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MySubMessageNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyTemplateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyTemplateNode.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyTemplateV2Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyTemplateV2Node.h -------------------------------------------------------------------------------- /tutorial/MyGNode/MyWriteParamNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyGNode/MyWriteParamNode.h -------------------------------------------------------------------------------- /tutorial/MyParams/MyConnParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyParams/MyConnParam.h -------------------------------------------------------------------------------- /tutorial/MyParams/MyMessageParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyParams/MyMessageParam.h -------------------------------------------------------------------------------- /tutorial/MyParams/MyParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyParams/MyParam.h -------------------------------------------------------------------------------- /tutorial/MyParams/MyVersionParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/MyParams/MyVersionParam.h -------------------------------------------------------------------------------- /tutorial/T00-HelloCGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T00-HelloCGraph.cpp -------------------------------------------------------------------------------- /tutorial/T01-Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T01-Simple.cpp -------------------------------------------------------------------------------- /tutorial/T02-Cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T02-Cluster.cpp -------------------------------------------------------------------------------- /tutorial/T03-Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T03-Region.cpp -------------------------------------------------------------------------------- /tutorial/T04-Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T04-Complex.cpp -------------------------------------------------------------------------------- /tutorial/T05-Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T05-Param.cpp -------------------------------------------------------------------------------- /tutorial/T06-Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T06-Condition.cpp -------------------------------------------------------------------------------- /tutorial/T07-MultiPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T07-MultiPipeline.cpp -------------------------------------------------------------------------------- /tutorial/T08-Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T08-Template.cpp -------------------------------------------------------------------------------- /tutorial/T09-Aspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T09-Aspect.cpp -------------------------------------------------------------------------------- /tutorial/T10-AspectParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T10-AspectParam.cpp -------------------------------------------------------------------------------- /tutorial/T11-Singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T11-Singleton.cpp -------------------------------------------------------------------------------- /tutorial/T12-Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T12-Function.cpp -------------------------------------------------------------------------------- /tutorial/T13-Daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T13-Daemon.cpp -------------------------------------------------------------------------------- /tutorial/T14-Hold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T14-Hold.cpp -------------------------------------------------------------------------------- /tutorial/T15-ElementParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T15-ElementParam.cpp -------------------------------------------------------------------------------- /tutorial/T16-MessageSendRecv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T16-MessageSendRecv.cpp -------------------------------------------------------------------------------- /tutorial/T17-MessagePubSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T17-MessagePubSub.cpp -------------------------------------------------------------------------------- /tutorial/T18-Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T18-Event.cpp -------------------------------------------------------------------------------- /tutorial/T19-Cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T19-Cancel.cpp -------------------------------------------------------------------------------- /tutorial/T20-Suspend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T20-Suspend.cpp -------------------------------------------------------------------------------- /tutorial/T21-MultiCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T21-MultiCondition.cpp -------------------------------------------------------------------------------- /tutorial/T22-Timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T22-Timeout.cpp -------------------------------------------------------------------------------- /tutorial/T23-Some.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T23-Some.cpp -------------------------------------------------------------------------------- /tutorial/T24-Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T24-Fence.cpp -------------------------------------------------------------------------------- /tutorial/T25-Coordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T25-Coordinator.cpp -------------------------------------------------------------------------------- /tutorial/T26-Mutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T26-Mutable.cpp -------------------------------------------------------------------------------- /tutorial/T27-Trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T27-Trim.cpp -------------------------------------------------------------------------------- /tutorial/T28-Stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T28-Stage.cpp -------------------------------------------------------------------------------- /tutorial/T29-Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/tutorial/T29-Storage.cpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunelFeng/CGraph/HEAD/xmake.lua --------------------------------------------------------------------------------