13 lines
202 B
Plaintext
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
|