Files
TDT4100/diagrammer/ex3/RPNCalc.wsd
2021-03-23 22:54:32 +01:00

13 lines
202 B
Plaintext

@startuml RNPCalc
scale 2
class encapsulation.RPNCalc {
-stack: Stack
+push(double num): void
+pop(): double
+getSize(): int
+peek(int i): double
+performOperation(char op): void
}
@enduml