blob: d97c8ba71c44114dbee7ad13d795acac5df7f77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# design patters
## Building
```
make
```
## 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
|