diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-27 18:17:43 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-27 18:17:43 +0200 |
commit | e7583299b0ef8f7372f075f89c4b0ca733d02e02 (patch) | |
tree | 1efb90234f5e84a8c8d32df05cbeba5864c603c0 | |
parent | cd6a2cb4ba04a21a4af21513b0c16911ebad481c (diff) |
add readme
-rw-r--r-- | readme.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..90cffb5 --- /dev/null +++ b/readme.md @@ -0,0 +1,25 @@ +# design patters + +List of applied design patters + +- Observer +- Factory + +## TODO + +- [ ] abstract class Node +- [ ] class CircuitFactory +- [ ] class GateAnd +- [ ] class GateNand +- [ ] class GateNor +- [ ] class GateNot +- [ ] class GateOr +- [ ] class GateXor +- [ ] class Net +- [ ] class NodeInput +- [ ] class NodeOutput +- [ ] class Parser +- [ ] class Subject +- [ ] enum SignalLevel +- [ ] interface Observer + |