aboutsummaryrefslogtreecommitdiff
path: root/readme.md
blob: 6165d5beec4bdcb7e1fabe9530679f9c4921a8d1 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# design patterns

## Building

```
make
```

## Applied design patters

- Observer
- Low binding factory
- Prototype
- Strategy
- Dependency injection
- vast meer!

## TODO

Functions:

- [x] loop detection (JOSHUA)
- [x] final output format (LOEK)

Schoonheid:

- [ ] worden members van klassen in hun declaratie 'overschreven' (dit kan
  niet, moet in een constructor o.i.d. gedaan worden)
- [ ] is de scope (public/private/protected) van alle members lekker
  consistent?
- [x] stomme doxygen (`//! <korte beschrijving>` boven functies/variabelen,
  `//!< wat doet dit` bij enum constantes)

Classes:

- [x] class Node
- [x] class CircuitFactory
- [x] class GateAnd
- [x] class GateNand
- [X] class GateNor
- [x] class GateNot
- [x] class GateOr
- [x] class GateXor
- [x] class Net
- [x] class NodeInput
- [x] class NodeOutput
- [x] class Parser
- [x] class Subject
- [x] enum SignalLevel
- [x] interface Observer