TDT4100/diagrammer/ex3/RPNCalc.wsd

13 lines
202 B
Plaintext
Raw Normal View History

2021-03-23 22:54:32 +01:00
@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