• R/O
  • SSH

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisionbcafc3572db50385a48f725f070c5703fa6b209d (tree)
l'heure2023-11-03 00:19:16
AuteurAlbert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Message de Log

Added Local DocParts: pipleline diagram (overview)

Change Summary

Modification

diff -r 6e99a5ba5ddf -r bcafc3572db5 CCastle/DocParts/Design/231101_pipeline.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CCastle/DocParts/Design/231101_pipeline.rst Thu Nov 02 16:19:16 2023 +0100
@@ -0,0 +1,49 @@
1+.. -*- plantuml -*-
2+
3+AIGR pipeline
4+=============
5+
6+.. uml::
7+
8+ @startuml
9+ skin rose
10+
11+ () "files" as txt1
12+
13+ file "*.Castle" as f1
14+ f1 --> txt1
15+ file "*.Moat" as f2
16+ f2 --> txt1
17+
18+ package CC{
19+ txt1 -> CC
20+
21+ () "AIGR" as a1
22+ () "AIGR" as a2
23+
24+ [Readers]
25+ CC #-> Readers
26+ [Transformers]
27+ Folder Backend {
28+ [Writers]
29+ [Translators]
30+
31+ Backend #->Writers
32+
33+ () "files" as txt2
34+ Writers -( txt2
35+ txt2 )-> Translators
36+ }
37+
38+
39+
40+ Readers -( a1
41+ a1 )-> Transformers
42+ Transformers -( a2
43+ a2 )-> Backend
44+ }
45+
46+ Translators 0)-> bin
47+
48+ @enduml
49+