source: trunk/hiptop/RetroStatus/net/frotz/rpn/RPN.java@ 207

Last change on this file since 207 was 207, checked in by Nicholas Riley, 18 years ago

rpn: Brian Swetland's RPN calculator using Dan Sachs's hipfloat
library. Changes for hiptop OS 2.3; some minor UI cleanups.

File size: 313 bytes
Line 
1// Copyright (C) 2003 Brian J. Swetland
2// See LICENSE for redistribution terms
3
4package net.frotz.rpn;
5
6import danger.app.Application;
7
8public class RPN extends Application
9{
10 public RPN() {
11 }
12
13 public void resume() {
14 if(win == null) {
15 win = new CalcWindow(this);
16 win.show();
17 }
18 }
19
20 CalcWindow win;
21}
Note: See TracBrowser for help on using the repository browser.